FileSubagentManager 基于文件的子代理管理器实现
| 83 | |
| 84 | // FileSubagentManager 基于文件的子代理管理器实现 |
| 85 | type FileSubagentManager struct { |
| 86 | mu sync.RWMutex |
| 87 | agents map[string]*SubagentInstance |
| 88 | dataDir string |
| 89 | } |
| 90 | |
| 91 | // NewFileSubagentManager 创建基于文件的子代理管理器 |
| 92 | func NewFileSubagentManager() *FileSubagentManager { |
nothing calls this directly
no outgoing calls
no test coverage detected