You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use opendal::Operator;use opendal::services::Azblob;use fusio_opendal::OpendalFs;asyncfnmain() -> {let op = Operator::new(Azblob::default().bucket("test"))?.finish();let ofs = OpendalFs::from(op);// Now, use ofs as fusio::Fs!let f = ofs.open("path",OpenOptions::default()).await?;
...}
In the current, fusio does not support Azure, we could implement traits for Azure, refer to fusio::impls::remotes::aws and object_store::azure
The text was updated successfully, but these errors were encountered: