(id: string)
| 29 | ]); |
| 30 | |
| 31 | export function getTarget(id: string): AgentTarget | undefined { |
| 32 | return ALL_TARGETS.find((t) => t.id === id); |
| 33 | } |
| 34 | |
| 35 | export function listTargetIds(): TargetId[] { |
| 36 | return ALL_TARGETS.map((t) => t.id); |
no outgoing calls
no test coverage detected