diff options
| author | Baitinq <[email protected]> | 2024-06-11 23:40:58 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2024-06-11 23:40:58 +0200 |
| commit | ddbd953be2429e40f521af29cd02a1bb23233d63 (patch) | |
| tree | cf985e5dac5318509817b76c645ca6040c439746 | |
| parent | fs-tracer: remove unneeded comment (diff) | |
| download | fs-tracer-ddbd953be2429e40f521af29cd02a1bb23233d63.tar.gz fs-tracer-ddbd953be2429e40f521af29cd02a1bb23233d63.tar.bz2 fs-tracer-ddbd953be2429e40f521af29cd02a1bb23233d63.zip | |
fs-tracer: cleanup imports
| -rw-r--r-- | fs-tracer/src/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs-tracer/src/main.rs b/fs-tracer/src/main.rs index 6fed8e5..c59dd53 100644 --- a/fs-tracer/src/main.rs +++ b/fs-tracer/src/main.rs @@ -9,9 +9,7 @@ use fs_tracer_common::SyscallInfo; use log::{debug, info, warn}; use std::env; use std::sync::atomic::{AtomicBool, Ordering}; -use std::sync::mpsc; -use std::sync::{Arc, Mutex}; -use tokio::task; +use std::sync::Arc; #[tokio::main] async fn main() -> Result<(), anyhow::Error> { |