feat: 新增执行记录实体与文件上传能力
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package tool
|
||||
|
||||
import (
|
||||
toolDto "ai-agent/workflow/model/dto/tool"
|
||||
toolService "ai-agent/workflow/service/tool"
|
||||
"context"
|
||||
)
|
||||
|
||||
type tool struct{}
|
||||
|
||||
var Tool = new(tool)
|
||||
|
||||
func (c *tool) List(ctx context.Context, req *toolDto.ToolListReq) (res *toolDto.ToolListRes, err error) {
|
||||
return toolService.ToolService.List(ctx, req)
|
||||
}
|
||||
Reference in New Issue
Block a user