blob: 19067448a6e146a4ca6da1ca6d9d1760a170fa0b [file] [log] [blame]
// 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::FromArgs, ffx_core::ffx_command, ffx_scrutiny_sub_command::Subcommand};
#[ffx_command()]
#[derive(FromArgs, Debug, PartialEq)]
#[argh(subcommand, name = "scrutiny", description = "Audit the security of Fuchsia")]
pub struct ScrutinyCommand {
#[argh(subcommand)]
pub subcommand: Subcommand,
}