freeman 0.1.0

A terminal-based API testing tool - like Postman, but for your terminal
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! TUI rendering layer - all drawing functions organized by component.
//!
//! This module contains pure rendering functions that read [`RenderState`]
//! and draw widgets to a [`Frame`]. No state mutation occurs here.

pub mod chrome;
pub mod draw;
pub mod gql_tab;
pub mod http_tab;
pub mod popups;
pub mod widgets;
pub mod ws_tab;