generated from nhcarrigan/template
8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
|
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));
|