goweb-gin-demo/api/enter.go

14 lines
189 B
Go
Raw Normal View History

2021-10-29 14:39:50 +08:00
package api
import (
2021-10-29 14:44:41 +08:00
"goweb-gin-demo/api/web"
2021-11-04 19:39:59 +08:00
"goweb-gin-demo/api/wt"
2021-10-29 14:39:50 +08:00
)
type ApiGroup struct {
ApiGroup web.ApiGroup
2021-11-04 19:39:59 +08:00
WtServiceGroup wt.ApiWtGroup
2021-10-29 14:39:50 +08:00
}
var ApiGroupApp = new(ApiGroup)