Files
cdk/crates/cdk-redb/src/lib.rs
thesimplekid b528964fb6 chore: readmes
chore: doc comments on public
2024-06-28 15:37:10 +01:00

18 lines
324 B
Rust

//! SQLite Storage backend for CDK
#![warn(missing_docs)]
#![warn(rustdoc::bare_urls)]
pub mod error;
mod migrations;
#[cfg(feature = "mint")]
pub mod mint;
#[cfg(feature = "wallet")]
pub mod wallet;
#[cfg(feature = "mint")]
pub use mint::MintRedbDatabase;
#[cfg(feature = "wallet")]
pub use wallet::WalletRedbDatabase;