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));