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
12
13
14
15
pub mod app;
pub mod events;
pub mod state;

pub use app::*;
pub use events::*;
pub use state::*;

use color_eyre::Result;
use std::path::Path;

pub async fn run_tui(collection_path: impl AsRef<Path>) -> Result<()> {
    let app = TuiApp::new(collection_path).await?;
    app.run().await
}