diff --git a/main.go b/main.go index c3c9ec7..d4be8f3 100644 --- a/main.go +++ b/main.go @@ -58,8 +58,12 @@ func main() { app.Get("/callbackSignup", handleCallbackSignup) app.Get("/test", func(c *fiber.Ctx) error { - fmt.Println("Current User: ", getCurrentUser(), " - ", checkIfLogin()) - return c.Render("test", fiber.Map{}) + fmt.Println("Hello from test") + return c.SendString("") + }) + + app.Get("/empty", func(c *fiber.Ctx) error { + return c.SendString("") }) // Start server diff --git a/views/chat.html b/views/chat.html index 1a3b2e2..07a56f1 100644 --- a/views/chat.html +++ b/views/chat.html @@ -14,7 +14,7 @@