| 34 | #[allow(dead_code)] |
| 35 | #[derive(Debug, Clone)] |
| 36 | pub struct JsFile { |
| 37 | pub url: String, |
| 38 | pub source: String, // Where it was found: "urlfinder", "http200", "dom" |
| 39 | pub size: Option<usize>, |
| 40 | pub content_type: Option<String>, |
| 41 | } |
| 42 | |
| 43 | #[allow(dead_code)] |
| 44 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected