Files
cms/web/public/routes.go
T
2026-05-31 17:35:41 -05:00

10 lines
198 B
Go

package public
import "github.com/gofiber/fiber/v2"
func RegisterRoutes(app *fiber.App) {
app.Get("/", func(ctx *fiber.Ctx) error {
return ctx.Send([]byte("It's working! It's working!"))
})
}