1 2 3 4 5 6 7
use anyhow::Result; use clap::Parser; fn main() -> Result<()> { let cli = bomdrift::cli::Cli::parse(); bomdrift::run(cli) }