fix windows io

This commit is contained in:
Nikita Sivukhin
2025-08-21 14:57:07 +04:00
parent c771487933
commit f99843cc9e

View File

@@ -30,6 +30,12 @@ impl IO for WindowsIO {
}))
}
#[instrument(err, skip_all, level = Level::TRACE)]
fn remove_file(&self, path: &str) -> Result<()> {
trace!("remove_file(path = {})", path);
Ok(std::fs::remove_file(path)?)
}
#[instrument(err, skip_all, level = Level::TRACE)]
fn run_once(&self) -> Result<()> {
Ok(())