mirror of
https://github.com/flipped-aurora/gin-vue-admin.git
synced 2026-09-22 04:43:00 +00:00
* feat: mcp能力调整为 streamhttp的独立服务 不再依赖gva本体 * feat: 增加MCP启动能力,增加AI工作流需求整理能力。 * feat: 增加需求梳理能力 * feat: 清理无用日志 * feat: 移除无用的Dify Chatflow文本和代码生成器按钮
20 lines
435 B
Go
20 lines
435 B
Go
package example
|
|
|
|
import (
|
|
api "github.com/flipped-aurora/gin-vue-admin/server/api/v1"
|
|
)
|
|
|
|
type RouterGroup struct {
|
|
CustomerRouter
|
|
|
|
AttachmentCategoryRouter
|
|
FileUploadAndDownloadRouter
|
|
}
|
|
|
|
var (
|
|
exaCustomerApi = api.ApiGroupApp.ExampleApiGroup.CustomerApi
|
|
|
|
attachmentCategoryApi = api.ApiGroupApp.ExampleApiGroup.AttachmentCategoryApi
|
|
exaFileUploadAndDownloadApi = api.ApiGroupApp.ExampleApiGroup.FileUploadAndDownloadApi
|
|
)
|