2026-07-14 17:12:39 +08:00

13 lines
247 B
Go

package appregistry
import "github.com/gin-gonic/gin"
func RegisterRoutes(protected *gin.RouterGroup, h *Handler) {
if h == nil {
return
}
protected.GET("/admin/apps", h.ListApps)
protected.GET("/admin/apps/visible", h.ListVisibleApps)
}