cartulary 0.3.0-alpha.1

The knowledge layer of your project — decisions, issues, docs, all in one place.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod domain;
pub mod infra;

pub fn run() {
    infra::driving::cli::execute();
}

/// Build the canonical `cartu` clap `Command` tree for documentation
/// and introspection (used by the doc-gen xtask).
pub fn reference_command() -> clap::Command {
    infra::driving::cli::reference_command()
}