ttrpc 0.9.0

A Rust version of ttrpc.
Documentation
// Copyright (c) 2020 Ant Financial
//
// SPDX-License-Identifier: Apache-2.0
//

//! Server and Client in sync mode.

mod channel;
mod client;
mod server;
mod sys;

#[macro_use]
mod utils;

pub use client::Client;
pub use server::Server;

#[doc(hidden)]
pub use utils::response_to_channel;
pub use utils::{MethodHandler, TtrpcContext};