@worldapi/cli
Version:
A productivity focused CLI and terminal for WorldAPI.
8 lines (7 loc) • 325 B
JavaScript
import { Command } from "commander";
import absorbHandler from "../actions/absorb.js";
const absorb = new Command();
absorb.name("absorb").version("0.0.1").description("Absorb the worldapi configuration of a folder into the cli").argument("<path>", "Path to the folder to absorb").action(absorbHandler);
export {
absorb
};