import { ResultDto } from '@/types/response/common'; import { DocumentResponse } from '@/types/response/page/document'; import { fetchJson } from '@/lib/utils/server'; export async function fetchDocument(code: string): Promise> { return await fetchJson(`/api/document/${code}`, { method: 'GET', headers: { 'Content-Type': 'application/json' }, }); }