diff options
-rw-r--r-- | main.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -2,6 +2,7 @@ package main import ( "context" + "embed" "log" "net/http" "os" @@ -31,9 +32,15 @@ func main() { log.Printf("Cleaning up due to OS signal '%v'\n", sig) } +//go:embed view/static/simple.css/simple.css +var static embed.FS + func startServer(addr string) *http.Server { var r *mux.Router = mux.NewRouter() + r.PathPrefix("/static/"). + Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static)))) + muxer := http.NewServeMux() muxer.Handle("/", r) |