Sainan e8211a3881
All checks were successful
Build / build (20) (push) Successful in 39s
Build / build (22) (push) Successful in 1m17s
Build / build (18) (push) Successful in 1m19s
Build / build (18) (pull_request) Successful in 41s
Build / build (20) (pull_request) Successful in 1m16s
Build / build (22) (pull_request) Successful in 1m25s
feat: guild ads
2025-03-30 19:21:34 +02:00

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 };