yuki_cli/lib.rs
1pub mod cli;
2pub mod config;
3pub mod output;
4pub mod schema;
5
6// The SOAP client, error type, and period helpers now live in the `yuki-client`
7// crate. Re-export them so existing `crate::{client,error,period}` paths in the
8// CLI and `yuki_cli::{client,error,period}` paths in tests keep resolving.
9pub use yuki_client::{client, error, period};