blob: 56ec1c859159f40d6dff6c20ceb3c4e413ab2029 [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_command()]
#[derive(FromArgs, Debug, PartialEq)]
#[argh(subcommand, name = "debug", description = "Start a debugging session.")]
pub struct DebugCommand {
#[argh(positional, default = "String::from(\"/tmp/zxdb.socket\")")]
pub socket_location: String,
}