import type { Argv } from 'yargs'; export const command = 'compiler '; export const desc = 'Commands related to the compiling of cards'; export const builder = function (yargs: Argv) { return yargs.commandDir('./compiler'); }; export function handler(/* argv: Argv */) {}