export async function getDoc(handle: string, name: string): Promise<string> {
  const res = await fetch(`https://raw.docbin.app/${handle}/${name}`);
  if (!res.ok) throw new Error('not found');
  return res.text();
}