fix(main.go): correct comment formatting for embed directives

This commit is contained in:
CaIon 2025-06-08 20:26:14 +08:00
parent a508eb2669
commit 1de4af1c74

View File

@ -25,10 +25,10 @@ import (
_ "net/http/pprof" _ "net/http/pprof"
) )
// go:embed web/dist //go:embed web/dist
var buildFS embed.FS var buildFS embed.FS
// go:embed web/dist/index.html //go:embed web/dist/index.html
var indexPage []byte var indexPage []byte
func main() { func main() {