mirror of
https://github.com/spacebarchat/server.git
synced 2026-08-28 11:44:07 +00:00
🐛 fix default endpoint
This commit is contained in:
+2
-2
@@ -26,7 +26,7 @@ export interface RateLimitOptions {
|
||||
|
||||
export interface DefaultOptions {
|
||||
gateway: {
|
||||
endpoint: string;
|
||||
endpoint: string | null;
|
||||
};
|
||||
general: {
|
||||
instance_id: string;
|
||||
@@ -114,7 +114,7 @@ export interface DefaultOptions {
|
||||
|
||||
export const DefaultOptions: DefaultOptions = {
|
||||
gateway: {
|
||||
endpoint: "ws://localhost:3001",
|
||||
endpoint: null,
|
||||
},
|
||||
general: {
|
||||
instance_id: Snowflake.generate(),
|
||||
|
||||
Reference in New Issue
Block a user