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