Delete the token from the keychain
(&self, database: &Database)
| 486 | |
| 487 | /// Delete the token from the keychain |
| 488 | pub async fn delete(&self, database: &Database) -> Result<(), AuthError> { |
| 489 | database.delete_secret(Self::SECRET_KEY).await?; |
| 490 | Ok(()) |
| 491 | } |
| 492 | |
| 493 | pub(crate) fn from_output( |
| 494 | output: CreateTokenOutput, |
no test coverage detected