2023-05-19 15:22:48 -03:00
|
|
|
import { RequestHandler } from "express";
|
2025-04-10 12:54:48 -07:00
|
|
|
import { getWorldState } from "@/src/services/worldStateService";
|
2023-05-19 15:22:48 -03:00
|
|
|
|
2024-12-28 18:30:43 +01:00
|
|
|
export const worldStateController: RequestHandler = (req, res) => {
|
2025-04-10 12:54:48 -07:00
|
|
|
res.json(getWorldState(req.query.buildLabel as string | undefined));
|
2025-03-25 06:38:30 -07:00
|
|
|
};
|