JM-WechatMini/api/v1/example/enter.go

14 lines
313 B
Go
Raw Normal View History

2023-11-02 04:34:46 +08:00
package example
import "miniapp/service"
type ApiGroup struct {
CustomerApi
FileUploadAndDownloadApi
}
var (
customerService = service.ServiceGroupApp.ExampleServiceGroup.CustomerService
fileUploadAndDownloadService = service.ServiceGroupApp.ExampleServiceGroup.FileUploadAndDownloadService
)