import { BlogComment } from "@/lib/types/blogComment"; import fetcher from "../fetcher"; export async function getComments(blogId: string) { return fetcher(`/api/blog/${blogId}/comments`, { method: 'GET' }); }