14 lines
199 B
Go
14 lines
199 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"goweb-gin-demo/api/system"
|
||
|
"goweb-gin-demo/api/wt"
|
||
|
)
|
||
|
|
||
|
type ApiGroup struct {
|
||
|
ApiGroup system.ApiGroup
|
||
|
WtServiceGroup wt.ApiWtGroup
|
||
|
}
|
||
|
|
||
|
var ApiGroupApp = new(ApiGroup)
|