Files
sundynix-go/api/v1/enter.go
T
2026-04-28 10:29:02 +08:00

17 lines
290 B
Go

package v1
import (
"sundynix-go/api/v1/codegen"
"sundynix-go/api/v1/order"
"sundynix-go/api/v1/system"
)
var ApiGroupApp = new(ApiGroup)
// ApiGroup 路由组
type ApiGroup struct {
SystemApiGroup system.ApiGroup
CodegenApiGroup codegen.ApiGroup
OrderApiGroup order.ApiGroup
}