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/name.ts
2021-08-20 15:53:34 +01:00

8 lines
170 B
TypeScript

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