11 lines
432 B
TypeScript
Raw Normal View History

2023-05-19 15:22:48 -03:00
import express from "express";
import { worldStateController } from "../controllers/dynamic/worldStateController";
import { aggregateSessionsController } from "../controllers/dynamic/aggregateSessionsController";
const dynamicController = express.Router();
dynamicController.get("/worldState.php", worldStateController);
dynamicController.get("/aggregateSessions.php", aggregateSessionsController);
export { dynamicController };