Files
tonePage/tone-page-web/lib/api/resource/list.ts
2025-05-12 21:50:53 +08:00

6 lines
165 B
TypeScript

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