covilbot
Version:
Slack bot which connects with Mopidy and Spotify
18 lines (12 loc) • 328 B
JavaScript
//
// This executable sets up the environment and runs the dopebot.
//
;
process.title = 'covilbot';
// Find the dopebot lib
var path = require('path');
var fs = require('fs');
var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib');
// Run dopebot
require(lib + '/cli')();