mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2026-09-23 13:03:07 +00:00
* feat: mcp能力调整为 streamhttp的独立服务 不再依赖gva本体 * feat: 增加MCP启动能力,增加AI工作流需求整理能力。 * feat: 增加需求梳理能力 * feat: 清理无用日志 * feat: 移除无用的Dify Chatflow文本和代码生成器按钮
18 lines
466 B
Go
18 lines
466 B
Go
package example
|
|
|
|
import "github.com/flipped-aurora/gin-vue-admin/server/service"
|
|
|
|
type ApiGroup struct {
|
|
CustomerApi
|
|
|
|
AttachmentCategoryApi
|
|
FileUploadAndDownloadApi
|
|
}
|
|
|
|
var (
|
|
customerService = service.ServiceGroupApp.ExampleServiceGroup.CustomerService
|
|
|
|
attachmentCategoryService = service.ServiceGroupApp.ExampleServiceGroup.AttachmentCategoryService
|
|
fileUploadAndDownloadService = service.ServiceGroupApp.ExampleServiceGroup.FileUploadAndDownloadService
|
|
)
|