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::{ use hyprland::{
dispatch::{DispatchType, WindowIdentifier}, dispatch::{DispatchType, WindowIdentifier},
prelude::HyprData, prelude::HyprData,
shared::Address, shared::Address,
}; };
use rayon::prelude::*; use rayon::prelude::*;
use std::collections::HashMap;
use std::path::PathBuf;
use std::{env, fs, sync::Arc, thread};
use sysinfo::{Pid, System}; use sysinfo::{Pid, System};
use worf::{ use worf::{
Error, Error,

View file

@ -1,6 +1,5 @@
use regex::Regex; use regex::Regex;
use crate::modes::search::SearchProvider;
use crate::{ use crate::{
Error, Error,
config::Config, config::Config,
@ -10,6 +9,7 @@ use crate::{
drun::{DRunProvider, update_drun_cache_and_run}, drun::{DRunProvider, update_drun_cache_and_run},
file::FileItemProvider, file::FileItemProvider,
math::MathProvider, math::MathProvider,
search::SearchProvider,
ssh, ssh,
ssh::SshProvider, 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 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 auto;
pub mod dmenu; pub mod dmenu;
pub mod drun; pub mod drun;