rename kontor projects

This commit is contained in:
2026-01-03 04:07:42 +01:00
parent 0392ac49fb
commit 4d93f51767
32 changed files with 92 additions and 62 deletions
+17
View File
@@ -0,0 +1,17 @@
package handler
import (
"net/http"
"github.com/labstack/echo/v4"
)
type Status struct {
Status string `json:"status"`
}
func GetHealth(c echo.Context) error {
status := new(Status)
status.Status = "ok"
return c.JSON(http.StatusOK, status)
}