summary refs log tree commit diff
path: root/bundle/src/Server.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-17 22:42:16 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-17 22:42:16 +0200
commite611126c7c168b7c14e6d79fe02e1f996937bbfc (patch)
treeffe0135fdf4ca7ae9b9005bbb85a6689345a06c2 /bundle/src/Server.ts
parent:sparkles: mention regex (diff)
downloadserver-e611126c7c168b7c14e6d79fe02e1f996937bbfc.tar.xz
:art: clean up
Diffstat (limited to 'bundle/src/Server.ts')
-rw-r--r--bundle/src/Server.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/bundle/src/Server.ts b/bundle/src/Server.ts
index c6acf0ad..e0586601 100644
--- a/bundle/src/Server.ts
+++ b/bundle/src/Server.ts
@@ -33,9 +33,8 @@ async function main() {
 		},
 	});
 
-	await api.start();
-	await cdn.start();
-	await gateway.start();
+	await Promise.all([api.start(), cdn.start(), gateway.start()]);
+	console.log(`[Server] listening on port ${port}`);
 }
 
 main().catch(console.error);