telegram-image-uploader-bot/index.js

11 lines
215 B
JavaScript
Raw Normal View History

2017-10-22 13:54:44 +00:00
/**
* A Telegram bot thats saves your photos locally
*
*/
2017-10-22 13:54:44 +00:00
// Import bot engine module
const botEngine = require('./botEngine');
console.log('Initializing bot...');
//Run the bot.
2017-10-21 18:55:25 +00:00
botEngine.runBot(process.argv);