blob: b2d8b81038b866fcb80f9821a65b35a0a20f245c [file] [log] [blame]
// lib.rs
/// This crate provides modules for interacting with a resource database, transactions, and blocks.
pub mod resdb;
pub mod transaction;
pub mod blocks;
pub mod crypto;
/// Re-export ResDB from the resdb module for convenient use.
pub use resdb::ResDB;