harn-cli 0.8.25

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

use clap::Parser;

#[derive(Debug, Parser)]
pub(crate) struct RoutesArgs {
    /// Project root, harn.toml path, or file inside the project.
    pub root: PathBuf,

    /// Emit a stable JSON envelope instead of the text table.
    #[arg(long)]
    pub json: bool,
}