12 lines
191 B
Go
12 lines
191 B
Go
package content
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func RegisterRoutes(app *fiber.App) {
|
|
app.Get("healthz", func(ctx *fiber.Ctx) error {
|
|
ctx.Status(fiber.StatusOK)
|
|
|
|
return nil
|
|
})
|
|
}
|