Make UUID an argument of trust subcommand in amfi

This commit is contained in:
Jackson Coxson
2026-01-30 08:56:07 -07:00
parent 77ea34f820
commit 496e099187

View File

@@ -19,8 +19,12 @@ pub fn register() -> JkCommand {
"status",
JkCommand::new().help("Gets the developer mode status"),
)
.with_subcommand("trust", JkCommand::new().help("Trusts an app signer"))
.with_argument(JkArgument::new().with_help("UUID").required(true))
.with_subcommand(
"trust",
JkCommand::new()
.help("Trusts an app signer")
.with_argument(JkArgument::new().with_help("UUID").required(true)),
)
.subcommand_required(true)
}