Skip to main content

yuki_cli/
lib.rs

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