package routes import "github.com/gofiber/fiber/v2" func Setup(app *fiber.App) { app.Get("/version", GetVersion) app.Post("/login", Login) }