Skip to content

Commit

Permalink
Refactor crate into smaller private modules
Browse files Browse the repository at this point in the history
  • Loading branch information
ramosbugs committed Feb 29, 2024
1 parent 38baa1a commit e87580c
Show file tree
Hide file tree
Showing 34 changed files with 10,539 additions and 10,510 deletions.
500 changes: 500 additions & 0 deletions src/authorization.rs

Large diffs are not rendered by default.

9 changes: 4 additions & 5 deletions src/claims.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
use crate::helpers::FlattenFilter;
use crate::types::helpers::{split_language_tag_key, timestamp_to_utc, utc_to_seconds};
use crate::types::{Boolean, LocalizedClaim, Timestamp};
use crate::helpers::{timestamp_to_utc, utc_to_seconds, Boolean, FlattenFilter, Timestamp};
use crate::types::localized::split_language_tag_key;
use crate::{
AddressCountry, AddressLocality, AddressPostalCode, AddressRegion, EndUserBirthday,
EndUserEmail, EndUserFamilyName, EndUserGivenName, EndUserMiddleName, EndUserName,
EndUserNickname, EndUserPhoneNumber, EndUserPictureUrl, EndUserProfileUrl, EndUserTimezone,
EndUserUsername, EndUserWebsiteUrl, FormattedAddress, LanguageTag, StreetAddress,
SubjectIdentifier,
EndUserUsername, EndUserWebsiteUrl, FormattedAddress, LanguageTag, LocalizedClaim,
StreetAddress, SubjectIdentifier,
};

use chrono::{DateTime, Utc};
Expand Down
Loading

0 comments on commit e87580c

Please sign in to comment.