pub trait OAuthTokenVerifier: Send + Sync {
// Required method
fn verify<'a>(
&'a self,
token: &'a str,
) -> Pin<Box<dyn Future<Output = Result<(), KontextDevError>> + Send + 'a>>;
}pub trait OAuthTokenVerifier: Send + Sync {
// Required method
fn verify<'a>(
&'a self,
token: &'a str,
) -> Pin<Box<dyn Future<Output = Result<(), KontextDevError>> + Send + 'a>>;
}