netbook 0.2.7

A lightweight TUI request collection manager and runner - a Postman alternative for the terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clap::Parser;
use color_eyre::Result;
use netbook::cli::{CliArgs, run_cli};

#[tokio::main]
async fn main() -> Result<()> {
    color_eyre::install()?;

    let args = CliArgs::parse();
    run_cli(args).await
}