mirror of
https://github.com/TheGreyDiamond/elevatormapRewritten.git
synced 2025-07-18 02:23:50 +02:00
6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
module.exports = function (app) {
|
|
app.get("/debug/showSessionInfo", function (req, res) {
|
|
res.send(JSON.stringify(req.session));
|
|
});
|
|
|
|
} |