From ec483ce875c53dfdaf21d786e7b6a3452eada011 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sun, 20 Aug 2023 17:23:19 +0200 Subject: [PATCH] chore(fmt): run clippy fix Signed-off-by: kjuulh --- como_auth/src/session.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/como_auth/src/session.rs b/como_auth/src/session.rs index 4e3a12d..596a1d9 100644 --- a/como_auth/src/session.rs +++ b/como_auth/src/session.rs @@ -4,7 +4,6 @@ use async_sqlx_session::PostgresSessionStore; use async_trait::async_trait; use axum_sessions::async_session::{Session as AxumSession, SessionStore as AxumSessionStore}; use serde::{Deserialize, Serialize}; -use sqlx::PgPool; use crate::{AuthClap, SessionBackend};