lib.rs 215 B

123456789101112
  1. //! SQLite Storage backend for CDK
  2. #![doc = include_str!("../README.md")]
  3. pub mod error;
  4. mod migrations;
  5. #[cfg(feature = "wallet")]
  6. pub mod wallet;
  7. #[cfg(feature = "wallet")]
  8. pub use wallet::WalletRedbDatabase;