11 lines
261 B
TypeScript
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);
|
|
}
|