forked from OpenWF/SpaceNinjaServer
11 lines
432 B
TypeScript
11 lines
432 B
TypeScript
![]() |
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 };
|