Skip to content

Commit 1be545f

Browse files
committed
added some easter eggs
1 parent f458b2c commit 1be545f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/routes/handlers/allRoutes.ts

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { Router, Request, Response } from "express";
2+
3+
const route = Router();
4+
5+
// All Route Metadata
6+
route.use("*", (_req: Request, _res: Response, next) => {
7+
_res.header("daddy", "pound me harder");
8+
_res.header("x-powered-by", "yo fat ass cock");
9+
_res.header("server", "ur mom");
10+
11+
next();
12+
});
13+
14+
export default route;

0 commit comments

Comments
 (0)