test wildcards

This commit is contained in:
shoopea
2025-12-28 21:58:06 +01:00
parent fc81c38ffd
commit ad88d9fe88
2 changed files with 6 additions and 6 deletions

View File

@@ -70,8 +70,8 @@ func (a *AdminConfig) Run() {
r.GET("/app/deactivate/:app", ApiAppDeactivate)
r.GET("/app/:app/source/list", ApiAppSourceList)
r.GET("/app/:app/source/add/:src", ApiAppSourceAdd)
r.GET("/app/:app/source/del/:src", ApiAppSourceDel)
r.GET("/app/:app/source/add/*src", ApiAppSourceAdd)
r.GET("/app/:app/source/del/*src", ApiAppSourceDel)
srv := &http.Server{
Addr: a.Addr,