diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-05-28 17:00:15 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-05-28 17:00:15 +0200 |
commit | 12d00255873df89da6742495a02e21ccfe2ed94f (patch) | |
tree | 4b20d2826262ec5c7fcb85d44ea758ea394d291f /src | |
parent | 1.3.7 (diff) | |
download | server-12d00255873df89da6742495a02e21ccfe2ed94f.tar.xz |
:sparkles: add cdn.endpoint to config
Diffstat (limited to 'src')
-rw-r--r-- | src/util/Config.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/Config.ts b/src/util/Config.ts index d0ef8121..a0d44a2d 100644 --- a/src/util/Config.ts +++ b/src/util/Config.ts @@ -28,6 +28,9 @@ export interface DefaultOptions { gateway: { endpoint: string | null; }; + cdn: { + endpoint: string | null; + }; general: { instance_id: string; }; @@ -116,6 +119,9 @@ export const DefaultOptions: DefaultOptions = { gateway: { endpoint: null, }, + cdn: { + endpoint: null, + }, general: { instance_id: Snowflake.generate(), }, |