diff options
Diffstat (limited to 'src/commands/config.ts')
| -rw-r--r-- | src/commands/config.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/commands/config.ts b/src/commands/config.ts new file mode 100644 index 0000000..c888766 --- /dev/null +++ b/src/commands/config.ts @@ -0,0 +1,19 @@ +import type { Command } from "commander"; +import { initConfig } from "../utils/config.js"; + +export const config = (program: Command) => { + program + .command("config") + .argument("<action>") + .action(async (action: string) => { + switch (action) { + case "init": + await initConfig(); + break; + default: + console.log( + "No valid action. These are valid: init. More comming soon...", + ); + } + }); +}; |
