feat: scaffold electron orchestrator foundation

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Copilot CLI
2026-03-21 09:27:28 +01:00
co-authored by Copilot
parent 1ed3d3f652
commit 9e509593d6
46 changed files with 3870 additions and 13 deletions
+8
View File
@@ -0,0 +1,8 @@
export function createId(prefix: string): string {
const random = Math.random().toString(36).slice(2, 10);
return `${prefix}-${random}`;
}
export function nowIso(): string {
return new Date().toISOString();
}