Skip to main content

Crate aquila_opendal

Crate aquila_opendal 

Source
Expand description

§Aquila OpenDAL

Crates.io Downloads Docs

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);

Structs§

OpendalStorage