feat: added login page

no functionality tho
This commit is contained in:
Itsigo
2024-04-12 16:33:37 +02:00
parent 98301fa904
commit 96ec48483a
4 changed files with 54 additions and 10 deletions

View File

@@ -39,6 +39,7 @@ func main() {
// app.Get("/*", func(c *fiber.Ctx) error {
// return c.SendString("Hello, World!")
// })
app.Get("/login", handler.Login)
app.Listen(fmt.Sprint(":", port))
}