mirror of
https://github.com/abocn/TelegramBot.git
synced 2025-03-10 12:49:57 +00:00
14 lines
356 B
JavaScript
14 lines
356 B
JavaScript
const Strings = require('../locales/english.json');
|
|
const resources = require('../props/resources.json');
|
|
|
|
module.exports = (bot) => {
|
|
bot.help((ctx) => {
|
|
ctx.replyWithPhoto(
|
|
resources.lynxFullPhoto, {
|
|
caption: Strings.lynxHelp,
|
|
parse_mode: 'Markdown',
|
|
reply_to_message_id: ctx.message.message_id
|
|
}
|
|
);
|
|
});
|
|
}; |