diff --git a/server/index.ts b/server/src/index.ts
similarity index 97%
rename from server/index.ts
rename to server/src/index.ts
index 871d468b13f636585e9c109f8e9701390c70c991..59a6165f3645f559a3f00f88bb05562f1773fa45 100644
--- a/server/index.ts
+++ b/server/src/index.ts
@@ -3,8 +3,8 @@ import http from "http";
 const app = express();
 const httpServer = http.createServer(app);
 import { Server as IOServer } from "socket.io";
-import Player from "../common/Player";
-import { Sushi } from "../common/Ressources";
+import Player from "./common/Player";
+import { Sushi } from "./common/Ressources";
 
 app.use("/", express.static("client/public"));