Inventory Infrastructure and Example for Suits #10

Merged
OrdisPrime merged 16 commits from inventory_basic into main 2023-06-03 18:06:22 -07:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 2c1261b3c4 - Show all commits

View File

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

View File

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