1 2 3 4 5 6 7
use clap::Parser; #[derive(Parser, Clone)] pub struct RunArgs { pub command: String, pub arguments: Vec<String>, }