From 518232d8539bd77e57d7b3e43974e31119c9aad6 Mon Sep 17 00:00:00 2001 From: Arzumify Date: Tue, 15 Oct 2024 18:46:04 +0100 Subject: [PATCH] I forgot to mount the thing Signed-off-by: Arzumify --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 3868438..3fedf1f 100644 --- a/main.go +++ b/main.go @@ -606,6 +606,7 @@ func main() { // Start the server slog.Info("Starting server on " + config.Global.IP + ":" + config.Global.Port) + router.Mount("/", hostRouter) err = http.ListenAndServe(config.Global.IP+":"+config.Global.Port, router) if err != nil { slog.Error("Error starting server: ", err)