feat: add initial project layout

This commit is contained in:
Alex Wellnitz
2025-09-12 15:08:52 +02:00
parent 22205abb66
commit cba8e97a30
6 changed files with 131 additions and 0 deletions

11
api/cache.go Normal file
View File

@@ -0,0 +1,11 @@
package api
import (
"net/http"
"github.com/labstack/echo/v4"
)
func GetItem(c echo.Context) error {
return c.String(http.StatusOK, "")
}