Files
16gagent/.benchmark/appointment/frontend/services/stats.ts
T
2026-06-06 10:40:48 +08:00

11 lines
216 B
TypeScript

// Auto-generated stats service
import { api } from "./api";
export function get() {
return api.get("/api/stats");
}
export function post(data: Record<string, unknown>) {
return api.post("/api/stats", data);
}