pulsar-web/src/api/game/game.ts
2025-12-30 16:57:07 +01:00

12 lines
272 B
TypeScript

import { callApi, HTTP } from "../tools";
import { IGameTimeResponse } from "./types";
async function fetchTimeApi(): Promise<IGameTimeResponse> {
const data = await callApi(HTTP.GET, "game/time");
return {
time: data,
};
}
export { fetchTimeApi };