From 0c5bcf66afaa4bdd20d13545c146e0ae1b8470a6 Mon Sep 17 00:00:00 2001 From: p6nj Date: Sat, 24 Aug 2024 14:55:26 +0200 Subject: [PATCH] full cli args --- src/cli.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index a2c46b3..3cba449 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -18,16 +18,6 @@ pub(super) struct Args { score: Score, } -impl Args { - pub(super) fn instrument(&self) -> Option<&::Target> { - self.instrument.as_deref() - } - - pub(super) fn output(&self) -> Option<&PathBuf> { - self.output.as_ref() - } -} - #[derive(Clone)] #[cfg_attr(debug_assertions, derive(Debug))] pub(super) struct Score(String);