kowalski/commands/start.js

14 lines
363 B
JavaScript
Raw Normal View History

2024-07-24 22:39:27 -03:00
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,
2024-07-25 03:55:05 +00:00
parse_mode: 'Markdown',
reply_to_message_id: ctx.message.message_id
2024-07-24 22:39:27 -03:00
}
);
});
};