reorg imports

This commit is contained in:
Alexander Mohr 2025-06-11 21:19:17 +02:00
parent ad5a888186
commit 7d958ffddb
3 changed files with 9 additions and 7 deletions

View file

@ -1,12 +1,11 @@
use std::{collections::HashMap, env, fs, path::PathBuf, sync::Arc, thread};
use hyprland::{
dispatch::{DispatchType, WindowIdentifier},
prelude::HyprData,
shared::Address,
};
use rayon::prelude::*;
use std::collections::HashMap;
use std::path::PathBuf;
use std::{env, fs, sync::Arc, thread};
use sysinfo::{Pid, System};
use worf::{
Error,

View file

@ -1,6 +1,5 @@
use regex::Regex;
use crate::modes::search::SearchProvider;
use crate::{
Error,
config::Config,
@ -10,6 +9,7 @@ use crate::{
drun::{DRunProvider, update_drun_cache_and_run},
file::FileItemProvider,
math::MathProvider,
search::SearchProvider,
ssh,
ssh::SshProvider,
},

View file

@ -1,8 +1,11 @@
use crate::Error;
use crate::config::Config;
use crate::desktop::{cache_file_path, create_file_if_not_exists, load_cache_file};
use std::{collections::HashMap, path::PathBuf};
use crate::{
Error,
config::Config,
desktop::{cache_file_path, create_file_if_not_exists, load_cache_file},
};
pub mod auto;
pub mod dmenu;
pub mod drun;