telegram-image-uploader-bot/index.js
2017-10-22 16:54:44 +03:00

10 lines
215 B
JavaScript

/**
* A Telegram bot thats saves your photos locally
*
*/
// Import bot engine module
const botEngine = require('./botEngine');
console.log('Initializing bot...');
//Run the bot.
botEngine.runBot(process.argv);