(localPath: string)
| 30 | } |
| 31 | |
| 32 | async function resolveAttachmentPath(localPath: string): Promise<string> { |
| 33 | const attachmentsRoot = await ensureAttachmentsRoot() |
| 34 | return resolveRelativePathWithinRoot(attachmentsRoot, localPath) |
| 35 | } |
| 36 | |
| 37 | function buildStoredRelativePath( |
| 38 | fileId: string, |
no test coverage detected