1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::prelude::*; #[derive(Args, Debug)] pub struct BundleIdentifierArgs { #[clap(long)] bundle_id: String, } impl BundleIdentifierArgs { pub fn resolve(self) -> color_eyre::Result<String> { Ok(self.bundle_id) } }