import type { Command } from "commander"; import { initConfig } from "../utils/config.js"; export const config = (program: Command) => { program .command("config") .argument("") .action(async (action: string) => { switch (action) { case "init": await initConfig(); break; default: console.log( "No valid action. These are valid: init. More comming soon...", ); } }); };