UNPKG

beekeeper-util

Version:

CLI utility for managing the beekeeper-service

12 lines (11 loc) 310 B
require('coffee-script/register') module.exports = function(commandFile) { var Command = require(commandFile) var Config = require('./src/config.coffee') new Config().get(function(error, config) { if (error) { console.error('get config error', error) } new Command(config).run() }) }