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

This commit is contained in:
CaIon
2025-06-08 20:26:14 +08:00
parent 5f79709b4e
commit d05adbbb9b

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() {