This repository has been archived on 2025-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
mod-logs/commandJson.ts

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