7 lines
86 B
Rust
7 lines
86 B
Rust
use anyhow::Result;
|
|
|
|
mod cli;
|
|
|
|
fn main() -> Result<()> {
|
|
cli::Cli::new()?.run()
|
|
}
|