This repository has been archived on 2023-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
vylbot-core/tests/__mocks/commands/normal.ts
2021-08-21 15:20:40 +01:00

8 lines
172 B
TypeScript

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