easy-cli-framework
Version:
A framework for building CLI applications that are robust and easy to maintain. Supports theming, configuration files, interactive prompts, and more.
12 lines (7 loc) • 305 B
JavaScript
var command = require('./command.js');
var configure = require('./configure.js');
var init = require('./init.js');
exports.EasyCLICommand = command.EasyCLICommand;
exports.EasyCLIConfigureCommand = configure.EasyCLIConfigureCommand;
exports.EasyCLIInitCommand = init.EasyCLIInitCommand;
;