// Auto-generated comments service import { api } from "./api"; export function get() { return api.get("/api/comments"); } export function post(data: Record) { return api.post("/api/comments", data); }