1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
pub mod client; mod convert; pub mod server; pub mod table; pub use tonic; pub use ella_common::{ error::{ClientError, ServerError}, Error, Result, }; #[allow(non_snake_case)] pub(crate) mod gen { tonic::include_proto!("ella.engine"); }