prj-cli 1.1.0

A CLI tool for managing projects on your local machine
1
2
3
4
5
6
7
8
9
10
11
12
mod cli;
mod tui;
mod shell;

use clap::Parser;
use cli::args::Cli;

fn main() -> color_eyre::Result<()> {
    color_eyre::install()?;
    let cli = Cli::parse();
    cli::run(cli)
}