summaryrefslogtreecommitdiff
path: root/internal/server/router.go
diff options
context:
space:
mode:
authorGrailFinder <wohilas@gmail.com>2024-03-19 07:39:31 +0300
committerGrailFinder <wohilas@gmail.com>2024-03-19 07:39:31 +0300
commit5f2eb541052f6f6f02d5bc4320f9c19e21c6f59f (patch)
tree985ae1ac1db4f19d132c16cdbf84e300edce6b6d /internal/server/router.go
parentbfb7942343bc08a7424f144f9799a9b547d6f607 (diff)
Feat: template use examples
Diffstat (limited to 'internal/server/router.go')
-rw-r--r--internal/server/router.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/internal/server/router.go b/internal/server/router.go
index ed33c19..9b03371 100644
--- a/internal/server/router.go
+++ b/internal/server/router.go
@@ -16,7 +16,12 @@ func (srv *server) ListenToRequests() {
WriteTimeout: time.Second * 5,
}
- mux.HandleFunc("/ping", h.Ping)
+ fs := http.FileServer(http.Dir("assets/"))
+ mux.Handle("GET /assets/", http.StripPrefix("/assets/", fs))
+
+ mux.HandleFunc("GET /ping", h.Ping)
+ mux.HandleFunc("GET /", h.MainPage)
+ mux.HandleFunc("POST /", h.HandleForm)
fmt.Printf("Listening on %v\n", server.Addr)
server.ListenAndServe()