wip: live video events

This commit is contained in:
Alejandro Gómez
2025-12-17 11:44:12 +01:00
parent c9a6df928e
commit 97c89142ae
45 changed files with 1450 additions and 433 deletions

View File

@@ -51,7 +51,8 @@ export function parseCommandInput(input: string): ParsedCommand {
commandName: "",
args: [],
fullInput,
error: error instanceof Error ? error.message : "Failed to parse global flags",
error:
error instanceof Error ? error.message : "Failed to parse global flags",
};
}