Files
zmkgC/internal/app/system/router/notification_recipients.go

25 lines
773 B
Go
Raw Normal View History

2025-07-07 20:11:59 +08:00
// ==========================================================================
// GFast自动生成router操作代码。
// 生成日期2024-04-11 16:58:12
// 生成路径: internal/app/system/router/notification_recipients.go
// 生成人gfast
// desc:通知接收
// company:云南奇讯科技有限公司
// ==========================================================================
package router
import (
"context"
"github.com/gogf/gf/v2/net/ghttp"
"github.com/tiger1103/gfast/v3/internal/app/system/controller"
)
func (router *Router) BindNotificationRecipientsController(ctx context.Context, group *ghttp.RouterGroup) {
group.Group("/notificationRecipients", func(group *ghttp.RouterGroup) {
group.Bind(
controller.NotificationRecipients,
)
})
}