Files
SamWaf/router/waf_notify_log.go
2025-11-25 09:07:21 +08:00

18 lines
416 B
Go

package router
import (
"SamWaf/api"
"github.com/gin-gonic/gin"
)
type NotifyLogRouter struct {
}
func (receiver *NotifyLogRouter) InitNotifyLogRouter(group *gin.RouterGroup) {
api := api.APIGroupAPP.WafNotifyLogApi
router := group.Group("")
router.POST("/samwaf/notify/log/list", api.GetListApi)
router.GET("/samwaf/notify/log/detail", api.GetDetailApi)
router.GET("/samwaf/notify/log/del", api.DelApi)
}