Files
tonePage/tone-page-web/lib/api/blog/list.ts
2025-05-18 14:29:42 +08:00

6 lines
149 B
TypeScript

import { Blog } from "@/lib/types/blog";
import fetcher from "../fetcher";
export async function list() {
return fetcher<Blog[]>('/api/blog');
}