harn-cli 0.8.0

CLI for the Harn programming language — run, test, REPL, format, and lint
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Args;

#[derive(Debug, Args)]
pub(crate) struct DoctorArgs {
    /// Skip provider connectivity checks.
    #[arg(long)]
    pub no_network: bool,
    /// Emit a single JSON document instead of human-readable output.
    #[arg(long)]
    pub json: bool,
}