You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
258 B

pub mod error;
pub mod arguments;
pub mod xlsxtocsv;
use clap::Parser;
use arguments::Arguments;
use xlsxtocsv::xlsxtocsv2;
fn main() {
let args = Arguments::parse();
if let Err(error) = xlsxtocsv2(&args) {
eprintln!("{}", error);
}
}