()
| 123 | * Get the current storage provider as a human-readable string |
| 124 | */ |
| 125 | export function getStorageProvider(): 'Azure Blob' | 'S3' | 'Local' { |
| 126 | if (USE_BLOB_STORAGE) return 'Azure Blob' |
| 127 | if (USE_S3_STORAGE) return 'S3' |
| 128 | return 'Local' |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Check if we're using any cloud storage (S3 or Blob) |
no outgoing calls
no test coverage detected