update
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import {Command} from "./base/command";
|
||||
import {MessageContext} from "../base/base";
|
||||
import {sendMessage} from "../base/net";
|
||||
|
||||
export class Help implements Command {
|
||||
regexp = /^\/help/i
|
||||
title: '/help'
|
||||
description: 'help'
|
||||
|
||||
async execute(context: MessageContext) {
|
||||
const text = "Все вопросы к @melodaaa"
|
||||
return sendMessage(context, text)
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user