1use crate::result::Result; 2use clap::Args; 3 4#[derive(Debug, Args)] 5pub struct RunArgs {} 6 7pub fn main(args: RunArgs, verbose: bool) -> Result { 8 todo!(); 9}