MCPcopy Create free account
hub / github.com/block/buzz / startManagedAgent

Function startManagedAgent

desktop/src/shared/api/tauri.ts:1162–1167  ·  view source on GitHub ↗
(pubkey: string)

Source from the content-addressed store, hash-verified

1160}
1161
1162export async function startManagedAgent(pubkey: string): Promise<ManagedAgent> {
1163 const response = await invokeTauri<RawManagedAgent>("start_managed_agent", {
1164 pubkey,
1165 });
1166 return fromRawManagedAgent(response);
1167}
1168
1169export async function stopManagedAgent(pubkey: string): Promise<ManagedAgent> {
1170 const response = await invokeTauri<RawManagedAgent>("stop_managed_agent", {

Callers 4

Calls 1

fromRawManagedAgentFunction · 0.85

Tested by

no test coverage detected