use clap::Parser;
#[derive(Debug, Parser)]
#[clap(
name = "forc-doc",
about = "Forc plugin for building a Sway package's documentation",
version
)]
pub struct Command {
#[clap(long)]
pub manifest_path: Option<String>,
#[clap(long)]
pub document_private_items: bool,
#[clap(long)]
pub open: bool,
#[clap(long = "offline")]
pub offline: bool,
#[clap(long = "silent", short = 's')]
pub silent: bool,
#[clap(long)]
pub locked: bool,
#[clap(long)]
pub no_deps: bool,
}