Merge branch '0xJacky:dev' into dev

This commit is contained in:
Akino 2025-04-10 11:37:12 +08:00 committed by GitHub
commit 9f0107eeed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
62 changed files with 4561 additions and 2240 deletions

View file

@ -0,0 +1,13 @@
package external_notify
import (
"github.com/0xJacky/Nginx-UI/model"
"github.com/gin-gonic/gin"
"github.com/uozi-tech/cosy"
)
func InitRouter(r *gin.RouterGroup) {
c := cosy.Api[model.ExternalNotify]("/external_notifies")
c.InitRouter(r)
}