Skip to content

Commit

Permalink
make pkcecode string pub to support serialization (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeheathc authored Aug 7, 2024
1 parent c81807c commit 7748c76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oauth2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl TokenType {
/// A proof key for OAuth2 PKCE ("Proof Key for Code Exchange") flow.
#[derive(Debug, Clone)]
pub struct PkceCode {
code: String,
pub code: String,
}

impl PkceCode {
Expand Down

0 comments on commit 7748c76

Please sign in to comment.