added storage library

This commit is contained in:
2025-06-30 22:58:25 -04:00
parent 585728de9d
commit a6b4f6917b
8 changed files with 3814 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
use azure_core::error::HttpError;
#[derive(Debug, thiserror::Error)]
pub enum AdapterError {
#[error("Azure error: {0}")]
Azure(#[from] azure_core::Error),
#[error("HTTP error: {0}")]
Http(#[from] HttpError),
#[error("Serialization error: {0}")]
Serialization(String),
}