2023-05-19 15:22:48 -03:00
|
|
|
import { RequestHandler } from "express";
|
2023-05-23 20:53:26 -04:00
|
|
|
|
2023-05-19 15:22:48 -03:00
|
|
|
const hostSessionController: RequestHandler = (_req, res) => {
|
2023-06-01 17:08:05 -07:00
|
|
|
console.log("HostSession Request:", JSON.parse(_req.body));
|
|
|
|
|
|
|
|
res.json({ sessionId: { $oid: "64768f104722f795300c9fc0" }, rewardSeed: 5867309943877621023 });
|
|
|
|
|
2023-05-19 15:22:48 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
export { hostSessionController };
|