SpaceNinjaServer/src/controllers/api/hostSessionController.ts

7 lines
221 B
TypeScript
Raw Normal View History

2023-05-19 15:22:48 -03:00
import { RequestHandler } from "express";
const hostSessionController: RequestHandler = (_req, res) => {
res.json({ sessionId: { $oid: "123123123" }, rewardSeed: 123123123123 });
2023-05-19 15:22:48 -03:00
};
export { hostSessionController };