telegram-image-uploader-bot/index.js
2019-06-25 23:20:05 -04:00

11 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);