User role tests

This commit is contained in:
Ethan Lane 2021-08-20 14:59:41 +01:00
parent 569c22f1f4
commit 2d2eaadea7
2 changed files with 67 additions and 1 deletions

View file

@ -0,0 +1,8 @@
import { Command } from "../../../src/type/command";
export class roles extends Command {
constructor() {
super();
this._roles = [ "Moderator" ];
}
}