Export MintDatabase traits in the cdk crate

This commit is contained in:
David Caseria
2025-04-07 12:45:02 -04:00
parent 0b9ca1a474
commit 3514f362eb

View File

@@ -8,10 +8,13 @@ pub mod cdk_database {
pub use cdk_common::database::Error;
#[cfg(all(feature = "mint", feature = "auth"))]
pub use cdk_common::database::MintAuthDatabase;
#[cfg(feature = "mint")]
pub use cdk_common::database::MintDatabase;
#[cfg(feature = "wallet")]
pub use cdk_common::database::WalletDatabase;
#[cfg(feature = "mint")]
pub use cdk_common::database::{
MintDatabase, MintKeysDatabase, MintProofsDatabase, MintQuotesDatabase,
MintSignaturesDatabase,
};
}
#[cfg(feature = "mint")]