ezpn 0.11.0

Dead simple terminal pane splitting — ezpn 2 3 gives you a 2x3 grid of shells
1
2
3
4
5
6
7
8
9
10
11
//! CLI surface: argument parsing and `--help` text.
//!
//! Split out of `main.rs` so the dispatcher stays small. Two siblings:
//! - [`parse`]: argv → [`parse::Config`] for both foreground + daemon entries.
//! - [`help`]: `--help` body, kept verbatim.

pub(crate) mod help;
pub(crate) mod parse;

pub(crate) use help::print_help;
pub(crate) use parse::parse_args;