macro_rules! macro_generate_from_csv { ($csv_path:expr) => { ... }; }
Attempts to generate file templates from a CSV file.
$csv_path
Returns a Result<(), String> indicating the success or failure of file generation. If successful, returns Ok(()). If an error occurs, returns Err with an error message.
Result<(), String>
Ok(())
Err