15 lines
255 B
Go
15 lines
255 B
Go
package system
|
|
|
|
import "sundynix-go/service"
|
|
|
|
type ApiGroup struct {
|
|
AuthApi
|
|
UserApi
|
|
ClientApi
|
|
}
|
|
|
|
var (
|
|
UserService = service.ServiceGroupApp.SystemServiceGroup.UserService
|
|
ClientService = service.ServiceGroupApp.SystemServiceGroup.ClientService
|
|
)
|