1//! Module for common auth enums 2 3mod grant_type; 4mod scope; 5 6pub(crate) use grant_type::GrantType; 7pub(crate) use scope::Scope;