fairway 0.0.2

The path for AI agents (and maybe some humans) to get things done
Documentation
1
2
3
4
5
6
7
8
9
//! Command-line argument parsing.

use clap::Parser;

/// The top-level command line. No subcommands exist yet; the
/// surface grows with each command that lands.
#[derive(Debug, Parser)]
#[command(name = "fairway", version, about = env!("CARGO_PKG_DESCRIPTION"))]
pub(crate) struct Cli {}