Merge pull request #85 from PR0M3TH3AN/codex/gate-same_file-imports-on-non-windows-targets

Fix unused import warning on Windows
This commit is contained in:
thePR0M3TH3AN
2025-05-24 22:27:31 -04:00
committed by GitHub

View File

@@ -13,6 +13,7 @@ use notify::{
event::{ModifyKind, RemoveKind, RenameMode}, event::{ModifyKind, RemoveKind, RenameMode},
Event, EventKind, RecommendedWatcher, RecursiveMode, Watcher as NotifyWatcherTrait, Event, EventKind, RecommendedWatcher, RecursiveMode, Watcher as NotifyWatcherTrait,
}; };
#[cfg(not(windows))]
use same_file::Handle; use same_file::Handle;
use std::collections::HashMap; use std::collections::HashMap;
use std::path::PathBuf; use std::path::PathBuf;