13 lines
633 B
TypeScript
13 lines
633 B
TypeScript
import express from "express";
|
|
import { aggregateSessionsController } from "@/src/controllers/dynamic/aggregateSessionsController";
|
|
import { getProfileViewingDataController } from "@/src/controllers/dynamic/getProfileViewingDataController";
|
|
import { worldStateController } from "@/src/controllers/dynamic/worldStateController";
|
|
|
|
const dynamicController = express.Router();
|
|
|
|
dynamicController.get("/aggregateSessions.php", aggregateSessionsController);
|
|
dynamicController.get("/getProfileViewingData.php", getProfileViewingDataController);
|
|
dynamicController.get("/worldState.php", worldStateController);
|
|
|
|
export { dynamicController };
|