11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
// Auto-generated appointments service
|
|
import { api } from "./api";
|
|
|
|
export function get() {
|
|
return api.get("/api/appointments");
|
|
}
|
|
|
|
export function post(data: Record<string, unknown>) {
|
|
return api.post("/api/appointments", data);
|
|
}
|