Files

5 lines
108 B
TypeScript
Raw Permalink 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();
}