1 2 3 4 5 6 7 8 9 10 11 12 13 14
--- src/tools.rs +++ src/tools.rs @@ -3875,5 +3875,11 @@ struct FindInput { pattern: String, path: Option<String>, limit: Option<usize>, } + +#[derive(Debug)] +struct FindEntry { + rel: String, + modified: Option<SystemTime>, +}