diff --git a/main.go b/main.go index c94b045..bab77c5 100644 --- a/main.go +++ b/main.go @@ -15,7 +15,7 @@ func main() { AllowMethods: "GET,POST,HEAD,PUT,DELETE,PATCH,OPTIONS", })) - app.Get("/", func(c *fiber.Ctx) error { + app.Get("/version", func(c *fiber.Ctx) error { return c.SendString("1.0.0") })