基础架构变更 增加模块化

This commit is contained in:
pixel
2021-07-17 14:18:52 +08:00
parent b5c1babec9
commit c7de76b849
95 changed files with 1283 additions and 714 deletions

15
server/service/enter.go Normal file
View File

@@ -0,0 +1,15 @@
package service
import (
"gin-vue-admin/service/autocode"
"gin-vue-admin/service/example"
"gin-vue-admin/service/system"
)
type ServiceGroup struct {
ExampleServiceGroup example.ServiceGroup
SystemServiceGroup system.ServiceGroup
AutoCodeServiceGroup autocode.ServiceGroup
}
var ServiceGroupApp = new(ServiceGroup)