mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
clean up imports
This commit is contained in:
parent
f06920a37e
commit
aa9f5a1a42
1 changed files with 2 additions and 4 deletions
|
@ -7,10 +7,7 @@ use axum::{
|
|||
Router,
|
||||
};
|
||||
use notify::{RecommendedWatcher, Watcher};
|
||||
use std::{
|
||||
fs::{self, File},
|
||||
io::{self, Read},
|
||||
};
|
||||
use std::{fs::File, io::Read};
|
||||
|
||||
use std::{path::PathBuf, sync::Arc};
|
||||
use tower::ServiceBuilder;
|
||||
|
@ -25,6 +22,7 @@ mod hot_reload_improts {
|
|||
pub use dioxus_rsx_interpreter::{error::RecompileReason, CodeLocation, SetRsxMessage};
|
||||
pub use std::collections::HashMap;
|
||||
pub use std::sync::Mutex;
|
||||
pub use std::{fs, io};
|
||||
pub use syn::__private::ToTokens;
|
||||
}
|
||||
#[cfg(feature = "hot_reload")]
|
||||
|
|
Loading…
Reference in a new issue