Files
tonePage/tone-page-web/lib/api/admin/web/blog/create.ts
2025-05-12 15:50:50 +08:00

12 lines
234 B
TypeScript

import fetcher from "@/lib/api/fetcher";
type CreateBlogParams = {
}
export async function create(data: CreateBlogParams) {
return fetcher('/admin/web/blog', {
method: 'POST',
body: JSON.stringify(data)
})
}