Files
git-utilities/bin/creature
2019-07-13 15:31:43 -04:00

9 lines
192 B
JavaScript
Executable File

#!/usr/bin/env node
const commander = require("commander");
const program = new commander.Command();
program
.command("start feature-words", "start a new feature")
.parse(process.argv);