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
//! Core service implementations for `ez-token`.
//!
//! This module groups the infrastructure layer, kept intentionally separate
//! from CLI concerns in [`crate::cli`]. Each submodule handles a distinct
//! technical responsibility required by the OAuth2 flows.

/// OAuth2 flow implementations for Microsoft Entra ID and Auth0.
pub mod authentication;

/// Shared HTTP client configured for OAuth2 token requests.
pub mod http_client;

/// Local callback server for the PKCE authorization redirect.
pub mod local_server;