ayun_opendal/lib.rs
1pub mod config;
2pub mod error;
3pub mod support;
4#[cfg(test)]
5mod tests;
6
7pub type OpendalResult<T, E = error::Error> = Result<T, E>;
8
9#[derive(Clone, Default)]
10pub struct Opendal {
11 services: std::collections::HashMap<String, opendal::Operator>,
12}
13
14// re-export
15pub use ayun_core::*;