fixed stuff

This commit is contained in:
2022-10-02 14:16:13 +02:00
parent 4c66fb1e7a
commit 71bdea4001
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ impl MutationRoot {
let user_id = user_service.add_user(username, password).await?;
Ok(user_id.into())
Ok(user_id)
}
}

View File

@@ -1,4 +1,4 @@
use std::sync::Arc;
use anyhow::anyhow;
use argon2::{password_hash::SaltString, Argon2, PasswordHash, PasswordHasher, PasswordVerifier};