1 2 3 4 5 6 7
use beaker::{execute, Cli}; use clap::Parser; fn main() -> Result<(), anyhow::Error> { let cli = Cli::parse(); execute(&cli.command) }