io_oauth/2.0/mod.rs
1//! Module dedicated to the OAuth 2.0 Authorization Framework.
2//!
3//! Refs: https://datatracker.ietf.org/doc/html/rfc6749
4
5#[path = "authorization-code-grant/mod.rs"]
6pub mod authorization_code_grant;
7#[path = "issue-access-token.rs"]
8pub mod issue_access_token;
9#[path = "refresh-access-token.rs"]
10pub mod refresh_access_token;