io.oath.jwt.ClaimsDecoder.scala Maven / Gradle / Ivy
The newest version!
package io.oath.jwt
import io.oath.jwt.model.JwtVerifyError
trait ClaimsDecoder[T] {
def decode(token: String): Either[JwtVerifyError.DecodingError, T]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy