// Export types export type { StorageService } from './types'; // Export implementations export { LocalStorageService } from './local'; export { S3StorageService } from './s3'; export { GCSStorageService } from './gcs'; // Export factory export { createStorageService } from './factory';