This commit is contained in:
shoopea
2025-12-27 19:35:54 +01:00
parent a1ba422429
commit 3e867da45f
3 changed files with 40 additions and 8 deletions

View File

@@ -61,6 +61,10 @@ func (a *AdminConfig) Run() {
r.GET("/config", ApiConfig)
r.GET("/config/:app", ApiConfigApp)
r.GET("/app/list", ApiAppList)
r.GET("/app/add/:app", ApiAppAdd)
r.GET("/app/del/:app", ApiAppDel)
srv := &http.Server{
Addr: a.Addr,
Handler: r,