mirror of
https://github.com/aljazceru/cdk.git
synced 2025-12-25 16:44:46 +01:00
15 lines
296 B
Rust
15 lines
296 B
Rust
//! SQLite storage backend for cdk
|
|
|
|
#![warn(missing_docs)]
|
|
#![warn(rustdoc::bare_urls)]
|
|
|
|
#[cfg(feature = "mint")]
|
|
pub mod mint;
|
|
#[cfg(feature = "wallet")]
|
|
pub mod wallet;
|
|
|
|
#[cfg(feature = "mint")]
|
|
pub use mint::MintSqliteDatabase;
|
|
#[cfg(feature = "wallet")]
|
|
pub use wallet::WalletSqliteDatabase;
|