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