package public import ( "embed" "io/fs" "net/http" ) //go:embed * var StaticFiles embed.FS func Handler() http.Handler { return http.FileServer(http.FS(StaticFiles)) } // FS returns the underlying filesystem for case-insensitive file serving func FS() fs.FS { return StaticFiles }