Plugins/phone-control: update test command context

This commit is contained in:
huntharo 2026-03-14 08:42:32 -04:00 committed by Vincent Koc
parent a81dbf109d
commit e9d95c4309

View File

@ -42,6 +42,12 @@ function createCommandContext(args: string): PluginCommandContext {
commandBody: `/phone ${args}`,
args,
config: {},
requestConversationBinding: async () => ({
status: "error",
message: "unsupported",
}),
detachConversationBinding: async () => ({ removed: false }),
getCurrentConversationBinding: async () => null,
};
}