From 0a8ceb9e6349284e75545a01ffad608b020f78e2 Mon Sep 17 00:00:00 2001 From: "Emma [it/its]@Rory&" Date: Mon, 11 Dec 2023 01:12:54 +0100 Subject: Actually run prettier --- src/gateway/Server.ts | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) (limited to 'src/gateway/Server.ts') diff --git a/src/gateway/Server.ts b/src/gateway/Server.ts index 9fba2d4c..5921e9b5 100644 --- a/src/gateway/Server.ts +++ b/src/gateway/Server.ts @@ -19,13 +19,7 @@ import "missing-native-js-functions"; import dotenv from "dotenv"; dotenv.config(); -import { - closeDatabase, - Config, - initDatabase, - initEvent, - Sentry, -} from "@spacebar/util"; +import { closeDatabase, Config, initDatabase, initEvent, Sentry } from "@spacebar/util"; import ws from "ws"; import { Connection } from "./events/Connection"; import http from "http"; @@ -36,15 +30,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; -- cgit 1.5.1