vylbot-app/tests/__mocks/commands/normal.ts
2021-12-21 18:02:27 +00:00

8 lines
181 B
TypeScript

import { Command } from "../../../src/type/command";
export default class normal extends Command {
constructor() {
super();
this._category = "General";
}
}