diff --git a/src/utils/database/json.ts b/src/utils/database/json.ts index 658ed96..7994b1d 100644 --- a/src/utils/database/json.ts +++ b/src/utils/database/json.ts @@ -32,6 +32,10 @@ export class JSONDatabase { }; }; + public async resetChannel(name: string) { + await this.createChannel(name); + }; + public async getChannel(name: string) { return this.data[name]; };