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
13
14
15
//! App layer - central state management and command processing
//!
//! The App actor receives UI events and network responses,
//! updates state, and emits network commands and render state.

pub mod state;
pub mod actor;
pub mod commands;
pub mod http_commands;
pub mod ws_commands;
pub mod gql_commands;
pub mod workspace_commands;

pub use state::AppState;
pub use actor::AppActor;