git sucks

This commit is contained in:
Ordis 2023-06-04 02:28:55 +02:00
parent d3b12ef836
commit 2c1261b3c4
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import { RequestHandler } from "express"; import { RequestHandler } from "express";
const getNewRewardSeedController: RequestHandler = (_req, res) => { const getNewRewardSeedController: RequestHandler = (_req, res) => {
res.sendStatus(200); res.json({ rewardSeed: 5867309943877621023 });
}; };
export { getNewRewardSeedController }; export { getNewRewardSeedController };

View File

@ -1,7 +1,7 @@
import { RequestHandler } from "express"; import { RequestHandler } from "express";
const hostSessionController: RequestHandler = (_req, res) => { const hostSessionController: RequestHandler = (_req, res) => {
res.json({ sessionId: { $oid: "64777916e794cfc5abdd69ea" }, rewardSeed: -1492798783199571432 }); res.json({ sessionId: { $oid: "64768f104722f795300c9fc0" }, rewardSeed: 5867309943877621023 });
}; };
export { hostSessionController }; export { hostSessionController };