/** * Upload Module * * Barrel exports for upload API module. * Provides file upload operations with domain-friendly interface. * * Public API: uploadApi (file upload methods) * Internal: All other implementation details (no mappers - simple file handling) * * @layer Infrastructure - API Client */ export { uploadApi } from './api'; export type { UploadResult, FileMetadata } from './api';