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-09-26 14:32:56 +01:00

9 lines
181 B
TypeScript

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