Skip to main content

avatarr_cli/
lib.rs

1//! Public re-exports for integration tests and internal consumers.
2//!
3//! The binary lives in `src/main.rs` and imports these types from the
4//! library crate so that the integration test crate at `tests/` can also
5//! reach them via `use avatarr_cli::{Cli, Commands, SearchType};`.
6
7pub mod cli_types;
8
9pub use cli_types::{Cli, Commands, SearchType};