struargs/
lib.rs

1pub trait Args {
2    fn args(&self) -> Vec<String>;
3}
4
5pub use struargs_derive::Args;