mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-05-17 00:15:25 +08:00
9 lines
199 B
Go
9 lines
199 B
Go
package tools
|
|
|
|
const (
|
|
ToolStatusSuccess = "success"
|
|
ToolStatusError = "error"
|
|
// 工具执行中间状态(中断)
|
|
ToolStatusInterrupted = "interrupted" // 已中断,等待用户交互
|
|
)
|