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

11 lines
261 B
TypeScript

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