Files
Go-Web-Template/server/api/v1/enter.go
2026-04-23 15:29:07 +08:00

18 lines
438 B
Go

package v1
import (
"git.echol.cn/loser/Go-Web-Template/server/api/v1/admin"
"git.echol.cn/loser/Go-Web-Template/server/api/v1/app"
"git.echol.cn/loser/Go-Web-Template/server/api/v1/common"
"git.echol.cn/loser/Go-Web-Template/server/api/v1/system"
)
var ApiGroupApp = new(ApiGroup)
type ApiGroup struct {
SystemApiGroup system.ApiGroup
CommonApiGroup common.ApiGroup
AdminApiGroup admin.ApiGroup
AppApiGroup app.ApiGroup
}