package controllers import "github.com/gofiber/fiber/v2" func Version(c *fiber.Ctx) error { return c.JSON(fiber.Map{ "version": "1.0.5", }) }