telegram-image-uploader-bot/index.js

11 lines
215 B
JavaScript
Raw Permalink Normal View History

2019-06-26 03:20:05 +00:00
/**
* 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);