Files
git-utilities/bin/creature
2019-07-14 22:04:51 -04:00

10 lines
227 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")
.command("end", "end a feature")
.parse(process.argv);