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