juno 0.1.2

A helper rust library for the juno microservices framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod base_connection;
mod inet_socket_connection;
#[cfg(target_family = "unix")]
mod unix_socket_connection;

pub use base_connection::BaseConnection;
pub use inet_socket_connection::InetSocketConnection;
#[cfg(target_family = "unix")]
pub use unix_socket_connection::UnixSocketConnection;

pub type Buffer = Vec<u8>;