summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/main.go b/main.go
index 6b3a0a9..44e4172 100644
--- a/main.go
+++ b/main.go
@@ -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)