diff --git a/internal/server/http.go b/internal/server/http.go index 549e339..66ae58f 100644 --- a/internal/server/http.go +++ b/internal/server/http.go @@ -49,7 +49,7 @@ func PrepareHTTP() { } }) - http.Handle("/public/", http.StripPrefix("/public/", http.FileServer(svg.Storage.GetPublicDir()))) + mux.Handle("/public/", http.StripPrefix("/public/", http.FileServer(svg.Storage.GetPublicDir()))) } func Start() {