1 2 3 4 5 6 7
use clap::Parser; use tarantool_runner::Cli; fn main() { let cli = Cli::parse(); cli.process_command().expect("failed to process command"); }