16 lines
454 B
Go
16 lines
454 B
Go
package example
|
|
|
|
import "git.echol.cn/loser/lckt/service"
|
|
|
|
type ApiGroup struct {
|
|
CustomerApi
|
|
FileUploadAndDownloadApi
|
|
AttachmentCategoryApi
|
|
}
|
|
|
|
var (
|
|
customerService = service.ServiceGroupApp.ExampleServiceGroup.CustomerService
|
|
fileUploadAndDownloadService = service.ServiceGroupApp.ExampleServiceGroup.FileUploadAndDownloadService
|
|
attachmentCategoryService = service.ServiceGroupApp.ExampleServiceGroup.AttachmentCategoryService
|
|
)
|