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
//! Message types for inter-layer communication in the actor-based architecture.
//!
//! This module defines all messages that flow between the UI, App, and Network layers.

pub mod ui_events;
pub mod network;
pub mod render;

pub use ui_events::UiEvent;
pub use network::{NetworkCommand, NetworkResponse};
pub use render::RenderState;