From 342d4720576369f83d88b0dbde6ca5d58aebd252 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Sat, 30 Aug 2025 01:57:49 -0400 Subject: Automatically reorder imports to my preferred style. --- src/app.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/app.rs') diff --git a/src/app.rs b/src/app.rs index d0ffcc0..e61672f 100644 --- a/src/app.rs +++ b/src/app.rs @@ -1,5 +1,7 @@ use sqlx::sqlite::SqlitePool; +#[cfg(test)] +use crate::user::app::Users; use crate::{ boot::app::Boot, conversation::app::Conversations, @@ -11,9 +13,6 @@ use crate::{ token::{self, app::Tokens}, }; -#[cfg(test)] -use crate::user::app::Users; - #[derive(Clone)] pub struct App { db: SqlitePool, -- cgit v1.2.3