Delete internal/multiagent directory

This commit is contained in:
公明
2026-07-11 10:45:21 +08:00
committed by GitHub
parent 612015b6d7
commit bec296ae3f
84 changed files with 0 additions and 11487 deletions
-15
View File
@@ -1,15 +0,0 @@
package multiagent
import "fmt"
// ExecuteExitError 表示 execute 命令非零退出(预期失败,非超时/中断/流异常)。
type ExecuteExitError struct {
Code int
}
func (e *ExecuteExitError) Error() string {
if e == nil {
return "exit status unknown"
}
return fmt.Sprintf("exit status %d", e.Code)
}