abci/
sync_api.rs

1//! Synchronous ABCI server API implementation
2mod application;
3mod async_impls;
4mod server;
5
6pub use self::{
7    application::{Consensus, Info, Mempool, Snapshot},
8    server::Server,
9};