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
//! Network layer - HTTP request execution and WebSocket connections
//!
//! The Network actor receives HTTP/WS commands and sends back responses.

pub mod actor;
pub mod client;
pub mod websocket;

pub use actor::NetworkActor;