summary refs log tree commit diff
path: root/src/gateway/Server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/gateway/Server.ts')
-rw-r--r--src/gateway/Server.ts18
1 files changed, 5 insertions, 13 deletions
diff --git a/src/gateway/Server.ts b/src/gateway/Server.ts
index 82fbeba2..97da3fa0 100644
--- a/src/gateway/Server.ts
+++ b/src/gateway/Server.ts
@@ -1,9 +1,9 @@
-import dotenv from "dotenv";
-dotenv.config();
 import { closeDatabase, Config, getOrInitialiseDatabase, initEvent } from "@fosscord/util";
+import dotenv from "dotenv";
+import http from "http";
 import ws from "ws";
 import { Connection } from "./events/Connection";
-import http from "http";
+dotenv.config();
 
 export class Server {
 	public ws: ws.Server;
@@ -11,15 +11,7 @@ export class Server {
 	public server: http.Server;
 	public production: boolean;
 
-	constructor({
-		port,
-		server,
-		production,
-	}: {
-		port: number;
-		server?: http.Server;
-		production?: boolean;
-	}) {
+	constructor({ port, server, production }: { port: number; server?: http.Server; production?: boolean }) {
 		this.port = port;
 		this.production = production || false;
 
@@ -39,7 +31,7 @@ export class Server {
 
 		this.ws = new ws.Server({
 			maxPayload: 4096,
-			noServer: true,
+			noServer: true
 		});
 		this.ws.on("connection", Connection);
 		this.ws.on("error", console.error);