mirror of
https://github.com/YFGaia/dify-plus.git
synced 2026-06-04 10:14:00 +08:00
14 lines
352 B
Go
14 lines
352 B
Go
package example
|
|
|
|
import "github.com/flipped-aurora/gin-vue-admin/server/service"
|
|
|
|
type ApiGroup struct {
|
|
CustomerApi
|
|
FileUploadAndDownloadApi
|
|
}
|
|
|
|
var (
|
|
customerService = service.ServiceGroupApp.ExampleServiceGroup.CustomerService
|
|
fileUploadAndDownloadService = service.ServiceGroupApp.ExampleServiceGroup.FileUploadAndDownloadService
|
|
)
|