esbuild embed
This commit is contained in:
17
main.go
17
main.go
@@ -3,11 +3,28 @@ package main
|
||||
import (
|
||||
"ais/pkg/api"
|
||||
|
||||
_ "embed"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
//go:embed web/public/index.html
|
||||
var indexhtml string
|
||||
|
||||
//go:embed web/public/ais.js
|
||||
var aisjs string
|
||||
|
||||
func main() {
|
||||
router := api.NewAPI()
|
||||
|
||||
router.GET("/", func(c *gin.Context) {
|
||||
c.Header("Content-Type", "text/html")
|
||||
c.String(200, indexhtml)
|
||||
})
|
||||
router.GET("/ais.js", func(c *gin.Context) {
|
||||
c.Header("Content-Type", "text/javascript")
|
||||
c.String(200, aisjs)
|
||||
})
|
||||
|
||||
router.Run(":8888")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user