summary refs log tree commit diff
path: root/src/util/Config.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-28 17:00:15 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-05-28 17:00:15 +0200
commit12d00255873df89da6742495a02e21ccfe2ed94f (patch)
tree4b20d2826262ec5c7fcb85d44ea758ea394d291f /src/util/Config.ts
parent1.3.7 (diff)
downloadserver-12d00255873df89da6742495a02e21ccfe2ed94f.tar.xz
:sparkles: add cdn.endpoint to config
Diffstat (limited to 'src/util/Config.ts')
-rw-r--r--src/util/Config.ts6
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(),
 	},