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
//! Command handlers for `ez-token` subcommands.
//!
//! Each module corresponds to a top-level CLI command and is responsible
//! for orchestrating the flow from resolved arguments through to token retrieval.

/// Machine-to-machine token fetch (`ez-token m2m`).
pub mod client_credentials;

/// Manages configuration profiles (`ez-token config`).
pub mod config;

/// Interactive browser login via PKCE (`ez-token login`).
pub mod pkce;