migu_server/cmd/api/other.go

9 lines
204 B
Go
Raw Normal View History

2024-10-18 15:46:54 +00:00
package api
import "go-admin/app/other/router"
func init() {
//注册路由 fixme 其他应用的路由在本目录新建文件放在init方法
AppRouters = append(AppRouters, router.InitRouter)
}