GUI-STUDIO commited on
Commit ·
eae7a98
1
Parent(s): 8423100
Update index.ts
Browse files- src/index.ts +2 -2
src/index.ts
CHANGED
|
@@ -64,9 +64,9 @@ const app = new Elysia()
|
|
| 64 |
return "🦊 Hello Rafiki 🍿";
|
| 65 |
})
|
| 66 |
|
| 67 |
-
.get("/foo", (
|
| 68 |
const REQ_headers = ctx.req.raw.headers;
|
| 69 |
-
console.log("REQ_headers", REQ_headers);
|
| 70 |
return "🦊 Hello Rafiki 🍿";
|
| 71 |
})
|
| 72 |
|
|
|
|
| 64 |
return "🦊 Hello Rafiki 🍿";
|
| 65 |
})
|
| 66 |
|
| 67 |
+
.get("/foo", (ctx) => {
|
| 68 |
const REQ_headers = ctx.req.raw.headers;
|
| 69 |
+
console.log("\n", "REQ_headers", REQ_headers, "\n");
|
| 70 |
return "🦊 Hello Rafiki 🍿";
|
| 71 |
})
|
| 72 |
|