Skip to main content

auths_cli/
lib.rs

1// CLI is the presentation boundary — Utc::now(), env::var, and printing are expected here.
2#![allow(
3    clippy::print_stdout,
4    clippy::print_stderr,
5    clippy::disallowed_methods,
6    clippy::exit,
7    clippy::unwrap_used,
8    clippy::expect_used
9)]
10pub mod adapters;
11pub mod cli;
12pub mod commands;
13pub mod config;
14pub mod core;
15pub mod errors;
16pub mod factories;
17pub mod telemetry;
18pub mod ux;
19
20pub use core::pubkey_cache::{cache_pubkey, clear_cached_pubkey, get_cached_pubkey};
21pub use core::types::ExportFormat;
22pub use ux::format::{Output, set_json_mode};