rich-prompt 0.3.1

A Rust CLI tool for rich prompts with file and directory selection.
1
2
3
4
5
6
7
8
9
10
mod cli;
mod core;
mod domain;
mod infra;

use cli::commands::run;

fn main() -> anyhow::Result<()> {
    run()
}