tincan-cli 0.6.0

Preserve development plans, decisions, learnings, and progress in plain Markdown
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod branding;
mod cli;
mod commands;
mod git;
mod model;
mod skill;
mod store;
mod util;
mod workspace;

fn main() {
    if let Err(error) = commands::run(cli::parse(std::env::args().skip(1).collect())) {
        eprintln!("tincan: {error}");
        std::process::exit(1);
    }
}