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

11 lines
225 B
TypeScript

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