macro_rules! macro_generate_from_ini { ($ini_path:expr) => { ... }; }
Attempts to generate file templates from a INI file.
$ini_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