Expand description
§Aquila OpenDAL
A storage backend powered by Apache OpenDAL.
Allows the server to be backed by any storage service supported by OpenDAL, including the file system, AWS S3, GCS, Azure Blob Storage and more.
§Usage
let mut builder = Gcs::default();
builder.bucket("my-gcs-bucket");
let op = Operator::new(builder).unwrap().finish();
let storage = OpendalStorage::new(op);