From 12d00255873df89da6742495a02e21ccfe2ed94f Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Fri, 28 May 2021 17:00:15 +0200 Subject: [PATCH] :sparkles: add cdn.endpoint to config --- src/util/Config.ts | 6 ++++++ 1 file changed, 6 insertions(+) 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(), },