1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-07 22:41:18 +03:00

Make sure Scope and InvalidScope are reexported from mas-oidc-client

This commit is contained in:
Kévin Commaille
2022-11-30 12:42:43 +01:00
committed by Quentin Gliech
parent 66055b044e
commit db25574a96
4 changed files with 19 additions and 8 deletions

View File

@ -16,7 +16,8 @@
use std::{fmt, str::FromStr};
use oauth2_types::scope::{InvalidScope, Scope, ScopeToken as StrScopeToken};
use oauth2_types::scope::ScopeToken as StrScopeToken;
pub use oauth2_types::scope::{InvalidScope, Scope};
use crate::PrivString;