feat: initial app prototype

This commit is contained in:
2025-01-20 18:36:05 -08:00
parent 3abc3e3272
commit d7cd3ffaab
21 changed files with 5187 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { log } from "./src/commands/log.js";
import { revoke } from "./src/commands/revoke.js";
const commands = [log.data, revoke.data];
const json = commands.map(c => c.toJSON());
console.log(JSON.stringify(json, null, 2));