1 2 3 4 5 6 7
pub mod add; pub mod check; pub mod fetch; pub use add::{add, AddError}; pub use check::check; pub use fetch::{fetch, FetchSummary};