package routes import ( "github.com/gofiber/fiber/v2" ) func Gethome(c *fiber.Ctx) error { return c.SendString("Homepage") }