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-05-23 20:42:06 -04:00
|
|
|
res.json({ sessionId: { $oid: "123123123" }, rewardSeed: 123123123123 });
|
2023-05-19 15:22:48 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
export { hostSessionController };
|