Remove nonsensical DebugSecret implementation

This commit is contained in:
Xiretza 2024-02-10 10:45:18 +00:00
parent a5a55ad69a
commit 8ce85262be

View file

@ -1,4 +1,4 @@
use secrecy::{DebugSecret, SecretString};
use secrecy::SecretString;
use tracing::instrument;
#[derive(Debug, Clone)]
@ -6,7 +6,6 @@ pub struct Password(pub SecretString);
#[derive(Debug, Clone)]
pub struct UserToken(pub SecretString);
impl DebugSecret for UserToken {}
#[derive(Debug)]
pub struct Authenticator {