summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-12-27 13:07:35 +0100
committerxengineering <me@xengineering.eu>2023-12-27 13:11:29 +0100
commit1978c5257e2cf4720716b59c3d69dc21cf457c18 (patch)
tree86cc6868d5cdbb12f9e63fd747b07479dfc9ff77
parent8fc20cc3689dcad169f853102a868a6116cc7b26 (diff)
downloadceres-1978c5257e2cf4720716b59c3d69dc21cf457c18.tar
ceres-1978c5257e2cf4720716b59c3d69dc21cf457c18.tar.zst
ceres-1978c5257e2cf4720716b59c3d69dc21cf457c18.zip
Provide CSS via HTTP server
This is a simple first HTTP handler and is required to display the website with the intended design.
-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)