From e1c72a6a6b649fa86e0eb8892373483999a92783 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Tue, 6 Apr 2021 23:36:44 -0300 Subject: [PATCH] Removing unused cli::CommandInfo --- src/cli.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 0eb4cc5..20594b5 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -23,12 +23,6 @@ pub enum Command { ShowVersion, } -#[derive(PartialEq, Eq, Debug)] -pub struct CommandInfo { - pub command: Command, - pub flags: oof::Flags, -} - /// Calls parse_args_and_flags_from using std::env::args_os ( argv ) pub fn parse_args() -> crate::Result { let args = env::args_os().skip(1).collect();