diff --git a/source/client.js b/source/client.js index 05c4972..6b336ee 100644 --- a/source/client.js +++ b/source/client.js @@ -28,26 +28,13 @@ class client { ) { - // variables < + // setup < this.guildId = guildId; this.channelId = channelId; this.openaiToken = openaiToken; this.discordToken = discordToken; this.applicationId = applicationId; - // > - - // commands < - this.commands = { - - 'conch' : new conch(), - 'choose' : new choose() - - }; - - // > - - // objects < this.discussion = new discussion(this.openaiToken); this.client = new Client({ @@ -65,6 +52,16 @@ class client { // > + // commands < + this.commands = { + + 'conch' : new conch(), + 'choose' : new choose() + + }; + + // > + }