Files
altbin.dev/app/utils/fetcher.ts
T

5 lines
108 B
TypeScript
Raw Normal View History

2025-08-20 14:14:33 +02:00
export async function fetchPastes() {
const res = await fetch('/api/paste');
return await res.json();
}