(files_in_use: &mut HashSet<String>, file: &str)
| 1104 | } |
| 1105 | |
| 1106 | fn maybe_add_file(files_in_use: &mut HashSet<String>, file: &str) { |
| 1107 | if let Some(file) = file.strip_prefix("$BLOBDIR/") { |
| 1108 | files_in_use.insert(file.to_string()); |
| 1109 | } |
| 1110 | } |
| 1111 | |
| 1112 | async fn maybe_add_from_param( |
| 1113 | sql: &Sql, |