initial server implementation
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user