diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-25 19:00:38 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-25 19:00:38 -0400 |
commit | 88e68875030086f5acf2c4295280e1b370242ec7 (patch) | |
tree | 1abbde525d54de5dceb4e99b3ea4c78bdb8816d4 /src/lib/utils/Config.ts | |
parent | 479122efbd892c513b12b00f7860659e7fff8116 (diff) | |
download | tanzanite-88e68875030086f5acf2c4295280e1b370242ec7.tar.gz tanzanite-88e68875030086f5acf2c4295280e1b370242ec7.tar.bz2 tanzanite-88e68875030086f5acf2c4295280e1b370242ec7.zip |
feat: add more buttons to help command
Diffstat (limited to 'src/lib/utils/Config.ts')
-rw-r--r-- | src/lib/utils/Config.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/utils/Config.ts b/src/lib/utils/Config.ts index d6b5802..65f43cb 100644 --- a/src/lib/utils/Config.ts +++ b/src/lib/utils/Config.ts @@ -8,6 +8,7 @@ export interface ConfigOptions { channels: { log: Snowflake; error: Snowflake; dm: Snowflake }; db: { host: string; port: number; username: string; password: string }; logging: { db: boolean; verbose: boolean; info: boolean }; + supportGuild: {id: Snowflake, invite: string} } export class Config { @@ -18,6 +19,7 @@ export class Config { public channels: { log: Snowflake; error: Snowflake; dm: Snowflake }; public db: { host: string; port: number; username: string; password: string }; public logging: { db: boolean; verbose: boolean; info: boolean }; + public supportGuild: {id: Snowflake, invite: string} public constructor(options: ConfigOptions) { this.credentials = options.credentials; @@ -27,6 +29,7 @@ export class Config { this.channels = options.channels; this.db = options.db; this.logging = options.logging; + this.supportGuild = options.supportGuild } public get token(): string { |