mirror of
https://github.com/thedevs-network/the-guard-bot
synced 2025-08-28 20:57:52 +00:00
13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
'use strict';
|
|
|
|
const Telegraf = require('telegraf');
|
|
const config = require('../config');
|
|
|
|
const bot = new Telegraf(config.token);
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
bot.polling.offset = -1;
|
|
}
|
|
|
|
module.exports = bot;
|