18 lines
438 B
Go
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
|
|
}
|