(&self, _token: &str)
| 1682 | #[async_trait] |
| 1683 | impl TokenValidator for DummyValidator { |
| 1684 | async fn validate_token(&self, _token: &str) -> Result<SpacetimeIdentityClaims, TokenValidationError> { |
| 1685 | Err(TokenValidationError::Other(anyhow::anyhow!("unused"))) |
| 1686 | } |
| 1687 | } |
| 1688 | |
| 1689 | #[derive(Clone)] |
no test coverage detected