AgentIDs returns the IDs of all known agents as a slice.
()
| 363 | |
| 364 | // AgentIDs returns the IDs of all known agents as a slice. |
| 365 | func AgentIDs() []string { |
| 366 | ids := make([]string, len(Agents)) |
| 367 | for i, h := range Agents { |
| 368 | ids[i] = h.ID |
| 369 | } |
| 370 | return ids |
| 371 | } |
| 372 | |
| 373 | // AgentHelpList returns a newline-separated bulleted list of agents for help text. |
| 374 | func AgentHelpList() string { |
no outgoing calls
no test coverage detected