Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW: Improve use declaration
Erik Kundt committed 7 months ago
commit 9829e8e8e8c92d60294ced0cc2f63e2c15ec5288
parent f8f9380eec669d4c4db3fc8a32bdbc727067bfc6
1 file changed +3 -1
modified crates/radicle-cli/src/commands/fork/args.rs
@@ -1,3 +1,5 @@
+
use radicle::identity::RepoId;
+

pub(crate) const ABOUT: &str = "Create a fork of a repository";

#[derive(Debug, clap::Parser)]
@@ -5,5 +7,5 @@ pub(crate) const ABOUT: &str = "Create a fork of a repository";
pub struct Args {
    /// The Repository ID of the repository to fork
    #[arg(value_name = "RID")]
-
    pub(super) rid: Option<radicle::identity::RepoId>,
+
    pub(super) rid: Option<RepoId>,
}