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