Skip to content

Commit 0a2147f

Browse files
committed
Explainer
1 parent 7548238 commit 0a2147f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed
Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
// Explain express's types
1+
import express from "express";
22

3-
export {};
3+
const app = express();
4+
5+
app.get("/user", (req, res) => {
6+
res.send("Hello");
7+
});
8+
9+
app.listen(3000);

0 commit comments

Comments
 (0)