wip: oci image management

This commit is contained in:
loveuer
2025-11-09 15:19:11 +08:00
commit 8de8234372
58 changed files with 6142 additions and 0 deletions

13
api/v1/routes.go Normal file
View File

@@ -0,0 +1,13 @@
package v1
import (
"gitea.loveuer.com/loveuer/cluster/handler"
"github.com/gofiber/fiber/v3"
)
// SetupRoutes 设置 v1 API 路由
func SetupRoutes(api fiber.Router) {
reg := api.Group("/registry")
reg.Get("/image/list", handler.ListImages)
}