List returns a list of all agents.
(ctx context.Context)
| 138 | type SubAgentClient interface { |
| 139 | // List returns a list of all agents. |
| 140 | List(ctx context.Context) ([]SubAgent, error) |
| 141 | // Create adds a new agent. |
| 142 | Create(ctx context.Context, agent SubAgent) (SubAgent, error) |
| 143 | // Delete removes an agent by its ID. |
no outgoing calls