rsv_lib/excel/
estimate.rs1use crate::args::{Count, Estimate};
2use crate::utils::cli_result::CliResult;
3
4impl Estimate {
5 pub fn excel_run(&self) -> CliResult {
6 Count {
7 filename: self.filename.clone(),
8 no_header: false,
9 sheet: self.sheet,
10 }
11 .excel_run()
12 }
13}