2023-06-02 00:20:49 -03:00

11 lines
438 B
TypeScript

import { aggregateSessionsController } from "@/src/controllers/dynamic/aggregateSessionsController";
import { worldStateController } from "@/src/controllers/dynamic/worldStateController";
import express from "express";
const dynamicController = express.Router();
dynamicController.get("/worldState.php", worldStateController);
dynamicController.get("/aggregateSessions.php", aggregateSessionsController);
export { dynamicController };