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

12
commands/privacy.js Normal file
View file

@ -0,0 +1,12 @@
const Strings = require('../locales/english.json');
module.exports = (bot) => {
bot.command('privacy', (ctx) => {
ctx.reply(
Strings.lynxPrivacy, {
parse_mode: 'Markdown',
disable_web_page_preview: true
}
);
});
};