refactor: Ran cargo clippy & cargo fmt

This commit is contained in:
Louis van Liefland
2024-12-09 20:32:42 +11:00
parent 113235be2f
commit 3e45d15f10
14 changed files with 52 additions and 57 deletions
+4 -2
View File
@@ -1,5 +1,7 @@
use std::{
borrow::BorrowMut, env, sync::Mutex, time::{SystemTime, UNIX_EPOCH}
env,
sync::Mutex,
time::{SystemTime, UNIX_EPOCH},
};
use log::{info, warn};
@@ -9,7 +11,7 @@ use tauri::{AppHandle, Emitter, Manager};
use url::Url;
use crate::{
db::{self, DatabaseAuth, DatabaseImpls},
db::{DatabaseAuth, DatabaseImpls},
remote::RemoteAccessError,
AppState, AppStatus, User, DB,
};