tlns_google_oauth2/
grouped_scopes.rs

1#![allow(non_camel_case_types)]
2//! A bunch of scopes grouped by their headers.  
3//! Example:
4//! ```rust
5//! tlns_google_oauth2::grouped_scopes::GoogleOAuth2APIv2::AuthUserinfoProfile;
6//! ```
7//! Or
8//! ```
9//! use crate::tlns_google_oauth2::FromGoogleScope;
10//! tlns_google_oauth2::grouped_scopes::GoogleOAuth2APIv2::from_google_scope("https://www.googleapis.com/auth/userinfo.profile");
11//! ```
12
13use tlns_google_oauth2_proc;
14tlns_google_oauth2_proc::generate_grouped_scopes_enums!();