JM-WechatMini/api/v1/example/enter.go
2023-11-02 04:34:46 +08:00

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
)