mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
13 lines
248 B
Go
13 lines
248 B
Go
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)
|
|
}
|