This repository has been archived on 2025-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
2023-11-12 21:26:31 +03:00

10 lines
293 B
TypeScript

import { Composer, Context } from "grammy";
const composer = new Composer<Context>();
const feature = composer.chatType('private');
feature.command(['help', 'start'], async (ctx) => {
ctx.reply('Add this bot to chat and type /remove command');
});
export { composer as welcomeFeature };