@terra-money/houston
Version:
Core module for Houston smart contract framework
14 lines (12 loc) • 390 B
text/typescript
const commander = require("commander");
const program = new commander.Command();
import initProject from "@terra-money/houston-init";
program
.command("<name> [options]")
.name("init")
.usage("[options]")
.option("--force <dir>", "overwrite forcefully in the directory")
.description("create a Houston project")
.action(initProject)
.parse(process.argv);