radicle_cli/commands/debug/
args.rs1use clap::Parser;
2
3const ABOUT: &str = "Write out information to help debug your Radicle node remotely";
4
5const LONG_ABOUT: &str = r#"
6Run this if you are reporting a problem in Radicle. The output is
7helpful for Radicle developers to debug your problem remotely. The
8output is meant to not include any sensitive information, but
9please check it, and then forward to the Radicle developers."#;
10
11#[derive(Parser, Debug)]
12#[command(about = ABOUT, long_about = LONG_ABOUT, disable_version_flag = true)]
13pub struct Args {}