TelegramBot/commands/start.js
2024-07-24 22:39:27 -03:00

13 lines
No EOL
310 B
JavaScript

const Strings = require('../locales/english.json');
const resources = require('../props/resources.json');
module.exports = (bot) => {
bot.start((ctx) => {
ctx.replyWithPhoto(
resources.lynxProfilePhoto, {
caption: Strings.lynxWelcome,
parse_mode: 'Markdown'
}
);
});
};