forked from lavina/lavina
cargo fmt
This commit is contained in:
parent
66a3bb7a68
commit
ad00fe759a
|
@ -59,8 +59,10 @@ impl Storage {
|
|||
#[tracing::instrument(skip(self), name = "Storage::check_user_existance")]
|
||||
pub async fn check_user_existance(&self, username: &str) -> Result<bool> {
|
||||
let mut executor = self.conn.lock().await;
|
||||
let result: Option<(String,)> =
|
||||
sqlx::query_as("select name from users where name = ?;").bind(username).fetch_optional(&mut *executor).await?;
|
||||
let result: Option<(String,)> = sqlx::query_as("select name from users where name = ?;")
|
||||
.bind(username)
|
||||
.fetch_optional(&mut *executor)
|
||||
.await?;
|
||||
|
||||
Ok(result.is_some())
|
||||
}
|
||||
|
|
|
@ -391,7 +391,6 @@ async fn scenario_two_users() -> Result<()> {
|
|||
s2.expect(":testserver 401 tester2 tester3 :No such nick/channel").await?;
|
||||
s2.expect(":testserver 318 tester2 tester3 :End of /WHOIS list").await?;
|
||||
|
||||
|
||||
stream2.shutdown().await?;
|
||||
|
||||
server.shutdown().await?;
|
||||
|
|
|
@ -2,7 +2,6 @@ use tokio::io::{AsyncWrite, AsyncWriteExt};
|
|||
|
||||
use crate::{prelude::Str, response::WriteResponse};
|
||||
|
||||
|
||||
/// ErrNoSuchNick401
|
||||
pub struct ErrNoSuchNick401 {
|
||||
client: Str,
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
//! Client-to-Server IRC protocol.
|
||||
pub mod client;
|
||||
pub mod commands;
|
||||
mod prelude;
|
||||
pub mod response;
|
||||
pub mod server;
|
||||
#[cfg(test)]
|
||||
mod testkit;
|
||||
pub mod user;
|
||||
pub mod commands;
|
||||
|
||||
use crate::prelude::Str;
|
||||
|
||||
|
|
Loading…
Reference in New Issue