Forgot to include the error

This commit is contained in:
Ericson Soares
2024-09-09 16:26:50 -03:00
parent 4d1443e65f
commit 84e327f285

View File

@@ -29,6 +29,8 @@ pub enum Error {
FailedToCreateEndpoint(io::Error),
// Token refresher errors
#[error("Invalid token format, missing claims")]
MissingClaims,
#[error("Failed to decode access token data: {0}")]
DecodeAccessTokenData(#[from] base64::DecodeError),
#[error("Failed to deserialize access token json data: {0}")]