10 lines
215 B
JavaScript
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);
|