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/roles.ts

9 lines
183 B
TypeScript
Raw Normal View History

2021-08-20 14:59:41 +01:00
import { Command } from "../../../src/type/command";
2021-09-26 14:32:56 +01:00
export default class roles extends Command {
2021-08-20 14:59:41 +01:00
constructor() {
super();
this._roles = [ "Moderator" ];
}
2021-09-26 14:32:56 +01:00
}