Basic REST app

This commit is contained in:
2026-03-30 18:26:45 +02:00
commit 42f9b974b2
17 changed files with 309 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package routes
import (
"quay/app/handlers"
"quay/internal/config"
"github.com/gofiber/fiber/v3"
)
func Register(app *fiber.App, cfg *config.Config) {
api := app.Group("/api")
api.Get("/health", handlers.HealthCheck)
}