(pubkey: string)
| 1167 | } |
| 1168 | |
| 1169 | export async function stopManagedAgent(pubkey: string): Promise<ManagedAgent> { |
| 1170 | const response = await invokeTauri<RawManagedAgent>("stop_managed_agent", { |
| 1171 | pubkey, |
| 1172 | }); |
| 1173 | return fromRawManagedAgent(response); |
| 1174 | } |
| 1175 | |
| 1176 | export async function deleteManagedAgent( |
| 1177 | pubkey: string, |
no test coverage detected