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.

18 lines
326 B

use std::path::Path;
use clap::Parser;
use umya_spreadsheet::reader;
pub mod extractor;
use extractor::Extractor;
pub mod arguments;
use arguments::Arguments;
fn main() {
let _args = Arguments::parse();
let book = reader::xlsx::read(Path::new("anafi.xlsx")).unwrap();
let _extractor = Extractor::new(book);
}