(src []SkillPath)
| 321 | } |
| 322 | |
| 323 | func cloneSkillPaths(src []SkillPath) []SkillPath { |
| 324 | if len(src) == 0 { |
| 325 | return nil |
| 326 | } |
| 327 | |
| 328 | return append([]SkillPath(nil), src...) |
| 329 | } |
| 330 | |
| 331 | func cloneMCPServers(src []aghconfig.MCPServer) []aghconfig.MCPServer { |
| 332 | if len(src) == 0 { |
no test coverage detected