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

11 lines
235 B
TypeScript

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