refactor: Ran cargo clippy & cargo fmt

This commit is contained in:
Louis van Liefland
2024-12-09 20:32:42 +11:00
parent 01260f0732
commit 653717ebcf
14 changed files with 52 additions and 57 deletions

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,
};