blob: e8aad1b76c62040c4b8def462363468d6f62f9c4 [file] [log] [blame]
// Copyright 2022 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.
#[ffx_core::ffx_command()]
#[derive(argh::ArgsInfo, argh::FromArgs, Debug, PartialEq)]
#[argh(subcommand, name = "storage", description = "Manage Fuchsia Filesystems")]
pub struct StorageCommand {
#[argh(subcommand)]
pub subcommand: ffx_storage_sub_command::SubCommand,
}