25 lines
725 B
Go
25 lines
725 B
Go
|
// ==========================================================================
|
|||
|
// GFast自动生成router操作代码。
|
|||
|
// 生成日期:2024-04-23 14:47:24
|
|||
|
// 生成路径: internal/app/system/router/comments.go
|
|||
|
// 生成人:gfast
|
|||
|
// desc:App通知公告评论
|
|||
|
// company:云南奇讯科技有限公司
|
|||
|
// ==========================================================================
|
|||
|
|
|||
|
package router
|
|||
|
|
|||
|
import (
|
|||
|
"context"
|
|||
|
"github.com/gogf/gf/v2/net/ghttp"
|
|||
|
"github.com/tiger1103/gfast/v3/internal/app/system/controller"
|
|||
|
)
|
|||
|
|
|||
|
func (router *Router) BindCommentsController(ctx context.Context, group *ghttp.RouterGroup) {
|
|||
|
group.Group("/comments", func(group *ghttp.RouterGroup) {
|
|||
|
group.Bind(
|
|||
|
controller.Comments,
|
|||
|
)
|
|||
|
})
|
|||
|
}
|