1pub use clap; 2 3#[macro_export] 4macro_rules! str { 5 ($e:expr) => { 6 $e.to_string(); 7 }; 8 () => { 9 "".to_string() 10 } 11}