package auth import ( "github.com/gofiber/fiber/v2" ) func SetupRoutes(app fiber.Router) fiber.Router { app.Post("/", AuthHandler) return app }