Skip to content

Commit

Permalink
refactor: Remove unneeded Debug derive
Browse files Browse the repository at this point in the history
  • Loading branch information
bush1D3v committed Jul 3, 2024
1 parent f6b4d0d commit 1e574bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/structs/jwt_claims.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use serde::{Deserialize, Serialize};

#[derive(Debug, Deserialize, Serialize)]
#[derive(Deserialize, Serialize)]
pub struct Claims {
pub sub: String,
pub role: String,
Expand Down

0 comments on commit 1e574bb

Please sign in to comment.