Added frontend

This commit is contained in:
2026-04-03 11:51:36 +02:00
parent 12678f8241
commit 29ee01afba
30 changed files with 1 additions and 337 deletions
+9
View File
@@ -0,0 +1,9 @@
package handlers
import "github.com/gofiber/fiber/v3"
func HealthCheck(c fiber.Ctx) error {
return c.Status(200).JSON(fiber.Map{
"status": "ok",
})
}