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

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);
}