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

8 lines
172 B
TypeScript
Raw Normal View History

2021-08-19 17:21:54 +01:00
import { Command } from "../../../src/type/command";
2021-08-21 15:20:40 +01:00
export class normal extends Command {
2021-08-20 15:53:34 +01:00
constructor() {
super();
this._category = "General";
}
2021-08-19 17:21:54 +01:00
}