mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 13:14:06 +01:00
✨ add cdn.endpoint to config
This commit is contained in:
parent
e1c831e415
commit
12d0025587
@ -28,6 +28,9 @@ export interface DefaultOptions {
|
|||||||
gateway: {
|
gateway: {
|
||||||
endpoint: string | null;
|
endpoint: string | null;
|
||||||
};
|
};
|
||||||
|
cdn: {
|
||||||
|
endpoint: string | null;
|
||||||
|
};
|
||||||
general: {
|
general: {
|
||||||
instance_id: string;
|
instance_id: string;
|
||||||
};
|
};
|
||||||
@ -116,6 +119,9 @@ export const DefaultOptions: DefaultOptions = {
|
|||||||
gateway: {
|
gateway: {
|
||||||
endpoint: null,
|
endpoint: null,
|
||||||
},
|
},
|
||||||
|
cdn: {
|
||||||
|
endpoint: null,
|
||||||
|
},
|
||||||
general: {
|
general: {
|
||||||
instance_id: Snowflake.generate(),
|
instance_id: Snowflake.generate(),
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user