| 17 | // Structure to represent a processed hit |
| 18 | #[derive(Clone, Debug, Serialize)] |
| 19 | pub struct CsvHit { |
| 20 | pub identifier: String, |
| 21 | pub phone: String, |
| 22 | pub first_name: String, |
| 23 | pub last_name: String, |
| 24 | } |
| 25 | |
| 26 | // Parse CSV input file containing masked numbers using csv library |
| 27 | pub async fn parse_csv_input(file_path: &str) -> Result<Vec<CsvRecord>, Error> { |
nothing calls this directly
no outgoing calls
no test coverage detected