tact 0.1.1

Terminal interface for Nanocodex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]
#![doc(html_favicon_url = "https://raw.githubusercontent.com/clabby/tact/main/assets/favicon.svg")]

//! Binary entry point and top-level diagnostic reporting.

mod app;
mod core;
mod tui;

use app::Cli;
use clap::Parser;
use miette::{Report, Result};

#[tokio::main]
async fn main() -> Result<()> {
    Cli::parse().run().await.map_err(Report::new)
}