Merge VylBot-Core

This commit is contained in:
Ethan Lane 2021-12-21 18:02:27 +00:00
parent 45d871fbf7
commit 8ca1800da5
Signed by: Vylpes
GPG key ID: EED233CC06D12504
39 changed files with 3316 additions and 146 deletions

View file

@ -0,0 +1,7 @@
import { Command } from "../../../src/type/command";
export default class noCategory extends Command {
constructor() {
super();
}
}

View file

@ -0,0 +1,8 @@
import { Command } from "../../../src/type/command";
export default class normal extends Command {
constructor() {
super();
this._category = "General";
}
}

View file

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