diff options
Diffstat (limited to 'svc/svc.go')
-rw-r--r-- | svc/svc.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svc/svc.go b/svc/svc.go index 6c9ee58..6284239 100644 --- a/svc/svc.go +++ b/svc/svc.go @@ -50,11 +50,11 @@ func newServer(port string, index *mux.Router) *http.Server { func setIndexRouting(index *mux.Router) { index.Path("/"). Methods("GET", "HEAD"). - HandlerFunc(indexHandler) + HandlerFunc(staticHandler) index.Path("/css"). Methods("GET", "HEAD"). - HandlerFunc(cssHandler) + HandlerFunc(staticHandler) index.Path("/api"). Methods("GET", "HEAD"). |