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(),
},
|