kowalski/commands/privacy.js

14 lines
371 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
module.exports = (bot) => {
bot.command('privacy', (ctx) => {
const Strings = getStrings(ctx.from.language_code);
2024-07-24 22:39:27 -03:00
ctx.reply(
Strings.lynxPrivacy, {
parse_mode: 'Markdown',
2024-07-25 03:55:05 +00:00
disable_web_page_preview: true,
reply_to_message_id: ctx.message.message_id
2024-07-24 22:39:27 -03:00
}
);
});
};