Files
altbin.dev/app/utils/fetcher.ts
T
2025-08-20 14:14:33 +02:00

5 lines
108 B
TypeScript

export async function fetchPastes() {
const res = await fetch('/api/paste');
return await res.json();
}