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