Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: unified use args,command for clap #498

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions provers/sgx/guest/src/app_args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ const DEFAULT_RAIKO_USER_CONFIG_SUBDIR_PATH: &str = ".config/raiko";

#[derive(Debug, Parser)]
pub struct App {
#[clap(flatten)]
#[command(flatten)]
pub global_opts: GlobalOpts,

#[clap(subcommand)]
#[command(subcommand)]
pub command: Command,
}

Expand All @@ -29,7 +29,7 @@ pub enum Command {

#[derive(Debug, Args)]
pub struct OneShotArgs {
#[clap(long)]
#[arg(long)]
pub sgx_instance_id: u32,
}

Expand All @@ -42,13 +42,13 @@ fn get_default_raiko_user_config_path(subdir: &str) -> PathBuf {

#[derive(Debug, Args)]
pub struct GlobalOpts {
#[clap(short, long, default_value=get_default_raiko_user_config_path("secrets").into_os_string())]
#[arg(short, long, default_value=get_default_raiko_user_config_path("secrets").into_os_string())]
/// Path to the directory with the encrypted private keys being used to sign the
/// blocks. For more details on the encryption see:
/// https://gramine.readthedocs.io/en/stable/manifest-syntax.html#encrypted-files
pub secrets_dir: PathBuf,

#[clap(short, long, default_value=get_default_raiko_user_config_path("config").into_os_string())]
#[arg(short, long, default_value=get_default_raiko_user_config_path("config").into_os_string())]
/// Path to the directory containing Raiko configuration files.
pub config_dir: PathBuf,
}