diff --git a/src/auth.rs b/src/auth.rs index 0d86db1..0a0901d 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -24,7 +24,7 @@ impl Authenticator { } #[instrument] - pub async fn verify_user_token(&self, username: &str, token: &UserToken) -> bool { + pub async fn verify_user_token(&self, username: &str, token: &UserToken) -> Result<(), ()> { todo!() } }