mirror of
https://github.com/thedevs-network/the-guard-bot
synced 2025-08-28 20:57:52 +00:00
24 lines
614 B
JavaScript
24 lines
614 B
JavaScript
'use strict';
|
|
|
|
const ms = require('millisecond');
|
|
const { Telegraf } = require('telegraf');
|
|
const { config } = require('../utils/config');
|
|
|
|
/** @typedef { import('../typings/context').ExtendedContext } ExtendedContext */
|
|
|
|
/** @type { Telegraf<ExtendedContext> } */
|
|
const bot = new Telegraf(config.token, {
|
|
handlerTimeout: ms('5s'),
|
|
telegram: { webhookReply: false },
|
|
});
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
bot.polling.offset = -1;
|
|
}
|
|
|
|
module.exports = bot;
|
|
|
|
// cyclic dependency
|
|
// bot/index requires context requires actions/warn requires bot/index
|
|
Object.assign(bot.context, require('./context'));
|