We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f82b2b9 commit b194b96Copy full SHA for b194b96
backend/index.js
@@ -28,10 +28,10 @@ connection.once("open", function () {
28
29
console.log("New client connected");
30
31
-// app.use("/", require("./middleware"));
+app.use("/", require("./middleware"));
32
app.use("/api/auth", require("./routes/register")());
33
app.use("/api/rental", require("./routes/rental")());
34
35
server.listen(PORT, function () {
36
console.log("Server is running on Port: " + PORT);
37
-});
+});
0 commit comments