blob: 746167c11ca43438a5dded1f114dbf8757b6d169 [file] [edit]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use argh::{ArgsInfo, FromArgs};
use ffx_core::ffx_command;
use ffx_scrutiny_sub_command::SubCommand;
#[ffx_command()]
#[derive(ArgsInfo, FromArgs, Debug, PartialEq)]
#[argh(subcommand, name = "scrutiny", description = "Audit the security of Fuchsia")]
pub struct ScrutinyCommand {
#[argh(subcommand)]
pub subcommand: SubCommand,
}