lpc/
lib.rs

1#[macro_use]
2extern crate log;
3
4pub mod client;
5pub mod server;
6pub mod types;
7pub mod utils;
8
9type StdBoxError = Box<dyn std::error::Error + Send + Sync>;
10pub type R<V = ()> = Result<V, StdBoxError>;
11