We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 219be5e commit dd9c91bCopy full SHA for dd9c91b
server.js
@@ -28,4 +28,8 @@ app.use("/api/doctor", doctor_router);
28
// });
29
// }
30
31
+app.get("/", (req, res) => {
32
+ res.send("Hello World");
33
+})
34
+
35
app.listen(PORT, () => console.log("server running on port " + PORT));
0 commit comments