1#![forbid(unsafe_code)] 2 3pub(crate) mod auth; 4mod cli; 5pub(crate) mod client; 6 7pub use cli::run;