Push base Telegraf bot

This commit is contained in:
lucmsilva651 2024-07-24 22:39:27 -03:00
commit 05eddc7734
No known key found for this signature in database
GPG key ID: D9B075FC6DC93985
15 changed files with 818 additions and 0 deletions

13
commands/help.js Normal file
View file

@ -0,0 +1,13 @@
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'
}
);
});
};