Yimaru-BackEnd/cmd/router.go

10 lines
200 B
Go

package main
import "github.com/gofiber/fiber/v2"
func SetupRoutes(app *fiber.App) {
app.Get("/health", func(c *fiber.Ctx) error {
return c.SendString("Betting service is up and running!")
})
}