pocket_cli/
lib.rs

1//! Pocket CLI library
2//! 
3//! This file exports all the modules needed by the binary and tests.
4
5// Re-export modules
6pub mod cards;
7pub mod cli;
8pub mod config;
9pub mod errors;
10pub mod logging;
11pub mod models;
12pub mod search;
13pub mod storage;
14pub mod utils;
15pub mod version;
16
17// Re-export frequently used items
18pub use errors::{PocketError, PocketResult};
19pub use config::Config;
20
21// Add any other modules that need to be accessible to tests