Files
nl-video-api/api/v1/vip_level_routes.go
2025-08-03 00:11:15 +08:00

20 lines
571 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package v1
import (
"github.com/gogf/gf/v2/net/ghttp"
)
// VipLevelUserRoutes 用户VIP等级路由
// 注意这个文件不应该导入controller包避免循环导入
// 路由注册应该在cmd包中进行
func VipLevelUserRoutes(group *ghttp.RouterGroup) {
// 路由注册逻辑移动到cmd包中
}
// VipLevelAdminRoutes 管理员VIP等级路由
// 注意这个文件不应该导入controller包避免循环导入
// 路由注册应该在cmd包中进行
func VipLevelAdminRoutes(group *ghttp.RouterGroup) {
// 路由注册逻辑移动到cmd包中
}