@softvisio/core
Version:
Softisio core
11 lines (8 loc) • 334 B
JavaScript
import StartCommand from "#lib/app/components/telegram/bot/commands/start";
export default Super =>
class extends StartCommand( Super ) {
// public
async run ( ctx, message1 ) {
await ctx.sendText( l10nt( "This is notifications bot. It doesn't support any additional commands." ) );
}
};