ayun/support/facades/
mod.rs

1#[cfg(feature = "auth")]
2pub use ayun_auth::{error::Error as AuthError, Auth};
3#[cfg(feature = "cache")]
4pub use ayun_cache::{error::Error as CacheError, Cache};
5pub use ayun_config::{error::Error as ConfigError, Config};
6#[cfg(feature = "database")]
7pub use ayun_database::{error::Error as DatabaseError, Database};
8#[cfg(feature = "hash")]
9pub use ayun_hash::{error::Error as HashError, Hash};
10#[cfg(feature = "http")]
11pub use ayun_http::{error::Error as HttpError, Http};
12#[cfg(feature = "metrics")]
13pub use ayun_metrics::Metrics;
14#[cfg(feature = "opendal")]
15pub use ayun_opendal::{error::Error as OpendalError, Opendal};
16#[cfg(feature = "redis")]
17pub use ayun_redis::{error::Error as RedisError, Redis};
18#[cfg(feature = "runtime")]
19pub use ayun_runtime::{error::Error as RuntimeError, Runtime};
20#[cfg(feature = "storage")]
21pub use ayun_storage::{error::Error as StorageError, Storage};
22#[cfg(feature = "tracing")]
23pub use ayun_tracing::{error::Error as TracingError, Tracing};
24#[cfg(feature = "view")]
25pub use ayun_view::{error::Error as ViewError, View};