* Add database and default values * Add ability to save a setting to the database * Get commands and events to use database * Setup and config command * Update commands to check roles per server * Different rules per server Signed-off-by: Ethan Lane <ethan@vylpes.com> * Different prefix per server Signed-off-by: Ethan Lane <ethan@vylpes.com> * Add verification system Signed-off-by: Ethan Lane <ethan@vylpes.com> * Disabled commands per server * Add devmode for default prefix * Update embeds * Fix broken tests
24 lines
557 B
TypeScript
24 lines
557 B
TypeScript
import { CommandResponse } from "../constants/CommandResponse";
|
|
import { ICommandContext } from "../contracts/ICommandContext";
|
|
|
|
export class Command {
|
|
public _roles: string[];
|
|
|
|
public _category?: string;
|
|
|
|
constructor() {
|
|
this._roles = [];
|
|
}
|
|
|
|
public precheck(context: ICommandContext): CommandResponse {
|
|
return CommandResponse.Ok;
|
|
}
|
|
|
|
public async precheckAsync(context: ICommandContext): Promise<CommandResponse> {
|
|
return CommandResponse.Ok;
|
|
}
|
|
|
|
public execute(context: ICommandContext) {
|
|
|
|
}
|
|
}
|