You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
419 B
16 lines
419 B
|
3 years ago
|
package admin
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/flipped-aurora/gin-vue-admin/server/api/admin/dutyassess"
|
||
|
|
"github.com/flipped-aurora/gin-vue-admin/server/api/admin/groupmanagement"
|
||
|
|
"github.com/flipped-aurora/gin-vue-admin/server/api/admin/systemuser"
|
||
|
|
)
|
||
|
|
|
||
|
|
type ApiGroup struct {
|
||
|
|
DutyAssess dutyassess.ApiGroup
|
||
|
|
SystemApi systemuser.ApiGroup
|
||
|
|
GroupManageMent groupmanagement.ApiGroup
|
||
|
|
}
|
||
|
|
|
||
|
|
var ApiGroupApp = new(ApiGroup)
|