1
2
3
4
pub use crate::proto::Error as HrpcError;

/// Shorthand type for `Result<T, HrpcError>.
pub type ServerResult<T> = Result<T, HrpcError>;