mirror of
https://github.com/abocn/TelegramBot.git
synced 2025-03-10 21:00:03 +00:00
12 lines
255 B
JavaScript
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
|
||
|
}
|
||
|
);
|
||
|
});
|
||
|
};
|