kowalski/commands/help.js

13 lines
303 B
JavaScript
Raw Normal View History

2024-07-24 22:39:27 -03:00
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'
}
);
});
};