Skip to main content

cdk_redb/
lib.rs

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