jlou 0.1.0

Command-line tool for JSON-RPC 2.0 over JSON Lines over UDP
Documentation
1
2
3
4
5
6
7
8
9
pub mod command_call;
pub mod command_echo_server;
pub mod command_req;
mod error;
mod utils;

pub use error::Error;

pub type Result<T> = std::result::Result<T, Error>;