tv-cli 0.7.0

Format json into table view
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::application::Application;
use anyhow::Result;

mod application;
mod input;

#[tokio::main]
async fn main() -> Result<()> {
    let mut app = Application::new();
    app.run().await
}