UNPKG

absenat

Version:

dedicated messaging service core

21 lines (18 loc) 417 B
/** * @author mr-exception * @description This file holds all the commands in the command line */ const connection = require('./connection'); const messaging = require('./messaging'); const profile = require('./profile'); const exit = (arguments, finished) => { console.log(chalk.green('bye :)')); finished(); process.exit(); }; module.exports = { ...connection, ...messaging, ...profile, exit, };