15 lines
No EOL
407 B
JavaScript
15 lines
No EOL
407 B
JavaScript
const { getStrings } = require('./checklang');
|
|
const resources = require('../props/resources.json');
|
|
|
|
module.exports = (bot) => {
|
|
bot.help((ctx) => {
|
|
const Strings = getStrings(ctx.from.language_code);
|
|
ctx.replyWithPhoto(
|
|
resources.lynxFullPhoto, {
|
|
caption: Strings.lynxHelp,
|
|
parse_mode: 'Markdown',
|
|
reply_to_message_id: ctx.message.message_id
|
|
}
|
|
);
|
|
});
|
|
}; |