初始化

This commit is contained in:
2026-07-18 05:58:41 +08:00
commit e4b95eb05e
69 changed files with 2289 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package admin
// ControllerV1 是后台管理控制器。
type ControllerV1 struct{}
// NewV1 创建后台管理控制器实例。
func NewV1() *ControllerV1 {
return &ControllerV1{}
}