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 18:07:32 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-17 18:07:32 +0200
commitda496d2c102936c9b3550dd549ebb836e318ea90 (patch)
treedd5e6e45dc049d30abc193e25ddf2b1167a0f15d /bundle/src/Server.ts
parent:bug: fix release (diff)
downloadserver-da496d2c102936c9b3550dd549ebb836e318ea90.tar.xz
:bug: fix bundle import path
Diffstat (limited to '')
-rw-r--r--bundle/src/Server.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundle/src/Server.ts b/bundle/src/Server.ts
index faf8a324..6b4db8de 100644
--- a/bundle/src/Server.ts
+++ b/bundle/src/Server.ts
@@ -2,9 +2,9 @@ process.on("unhandledRejection", console.error);
 process.on("uncaughtException", console.error);
 
 import http from "http";
-import { FosscordServer as APIServer } from "@fosscord/api";
-import { Server as GatewayServer } from "@fosscord/gateway";
-import { CDNServer } from "@fosscord/cdn/";
+import { FosscordServer as APIServer } from "../../api";
+import { Server as GatewayServer } from "../../gateway";
+import { CDNServer } from "../../cdn/";
 import express from "express";
 import { Config } from "../../util/dist";