Function create_csv
Source pub fn create_csv(output: &str) -> Result<(), Box<dyn Error>>
Expand description
Creates a CSV file at the specified path.
§Arguments
output - The file path where the CSV file will be created.
§Returns
A Result<(), Box<dyn Error>> indicating success or failure.