Files
workavia-drive/twake/backend/node/src/cli/cmds/generate.ts
T
montaghanmy 10fe6f78d1 feat: init
2023-03-23 11:03:16 +01:00

15 lines
378 B
TypeScript

import { CommandModule } from "yargs";
const command: CommandModule = {
describe: "Generate Twake data",
command: "generate <command>",
builder: yargs =>
yargs.commandDir("generate_cmds", {
visit: commandModule => commandModule.default,
}),
// eslint-disable-next-line @typescript-eslint/no-empty-function
handler: () => {},
};
export default command;