14 lines
313 B
Go
14 lines
313 B
Go
|
package example
|
||
|
|
||
|
import "miniapp/service"
|
||
|
|
||
|
type ApiGroup struct {
|
||
|
CustomerApi
|
||
|
FileUploadAndDownloadApi
|
||
|
}
|
||
|
|
||
|
var (
|
||
|
customerService = service.ServiceGroupApp.ExampleServiceGroup.CustomerService
|
||
|
fileUploadAndDownloadService = service.ServiceGroupApp.ExampleServiceGroup.FileUploadAndDownloadService
|
||
|
)
|