nginx-ui/api/notification/router.go
2024-10-26 10:39:31 +08:00

10 lines
242 B
Go

package notification
import "github.com/gin-gonic/gin"
func InitRouter(r *gin.RouterGroup) {
r.GET("notifications", GetList)
r.GET("notifications/:id", Get)
r.DELETE("notifications/:id", Destroy)
r.DELETE("notifications", DestroyAll)
}