Files
distributed-cache/api/cache.go
2025-09-12 15:08:52 +02:00

12 lines
144 B
Go

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