From 5812a14cd452f737962f12f7cf2df56c66efc0ed Mon Sep 17 00:00:00 2001
From: paul- <paullouis.gomis.etu@univ-lille.fr>
Date: Thu, 13 Apr 2023 12:41:30 +0200
Subject: [PATCH] move index to correct folder

---
 server/{ => src}/index.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename server/{ => src}/index.ts (97%)

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 871d468b..59a6165f 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"));
 
-- 
GitLab