| 4 | |
| 5 | #[derive(Debug)] |
| 6 | pub struct App<'a, 'c, 'f> { |
| 7 | name: &'a str, |
| 8 | author: &'a str, |
| 9 | version: &'a str, |
| 10 | description: &'a str, |
| 11 | banner: String, |
| 12 | commands: HashMap<String, Command<'c, 'f>>, |
| 13 | } |
| 14 | |
| 15 | pub fn new<'a, 'c, 'f>() -> App<'a, 'c, 'f> { |
| 16 | App { |
nothing calls this directly
no outgoing calls
no test coverage detected