2023-05-19 15:22:48 -03:00
|
|
|
import { RequestHandler } from "express";
|
2023-05-26 21:37:12 +08:00
|
|
|
import config from "@/config.json";
|
2023-05-19 15:22:48 -03:00
|
|
|
import worldState from "@/static/fixed_responses/worldState.json";
|
|
|
|
|
|
|
|
const worldStateController: RequestHandler = (_req, res) => {
|
2023-05-23 20:42:06 -04:00
|
|
|
res.json(worldState);
|
2023-05-19 15:22:48 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
export { worldStateController };
|