kowalski/commands/privacy.js

12 lines
255 B
JavaScript

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
}
);
});
};