ez-token 0.1.0

CLI tool for generating OAuth2 access tokens via PKCE and Client Credentials for Microsoft Entra ID and Auth0
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! CLI user interface layer for `ez-token`.
//!
//! This module groups everything related to the command-line interface:
//! argument parsing, interactive prompts, output formatting, and
//! input history. It is intentionally kept separate from the
//! authentication logic in [`crate::services`].

/// CLI argument definitions via `clap`.
pub mod args;
/// Resolves authentication parameters from args, profiles, and prompts.
pub mod auth_params;
/// Persistent input history for interactive prompts.
pub mod history;
/// Terminal output helpers, spinners, and emoji formatting.
pub mod output;