迁移 Flutter 端与训练脚本,模型/训练产物移出 git(遵循纯代码约定)

This commit is contained in:
2026-08-24 12:35:24 +08:00
parent d056f01965
commit 961523d94c
218 changed files with 13391 additions and 3232 deletions
+9
View File
@@ -0,0 +1,9 @@
package common
import "github.com/gogf/gf/v2/net/ghttp"
// BindController 反射注册一组 controller 到路由组:接口 path/method 唯一来源为 dto 内嵌的
// g.Meta(携带 path/method/summary),禁止在 main.go 手动逐条注册。
func BindController(group *ghttp.RouterGroup, controllers ...interface{}) {
group.Bind(controllers...)
}