kowalski/commands/help.js

15 lines
414 B
JavaScript
Raw Normal View History

2024-07-25 23:57:38 -03:00
const { getStrings } = require('../plugins/checklang.js');
2024-07-24 22:39:27 -03:00
const resources = require('../props/resources.json');
module.exports = (bot) => {
bot.help((ctx) => {
const Strings = getStrings(ctx.from.language_code);
2024-07-24 22:39:27 -03:00
ctx.replyWithPhoto(
2024-07-26 00:06:04 -03:00
resources.lunaCat2, {
2024-07-24 22:39:27 -03:00
caption: Strings.lynxHelp,
2024-07-25 03:55:05 +00:00
parse_mode: 'Markdown',
reply_to_message_id: ctx.message.message_id
2024-07-24 22:39:27 -03:00
}
);
});
};