Reviewed-on: #1390 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
15 lines
788 B
TypeScript
15 lines
788 B
TypeScript
import express from "express";
|
|
import { aggregateSessionsController } from "@/src/controllers/dynamic/aggregateSessionsController";
|
|
import { getGuildAdsController } from "@/src/controllers/dynamic/getGuildAdsController";
|
|
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("/getGuildAds.php", getGuildAdsController);
|
|
dynamicController.get("/getProfileViewingData.php", getProfileViewingDataController);
|
|
dynamicController.get("/worldState.php", worldStateController);
|
|
|
|
export { dynamicController };
|