1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! gRPC service implementation. #[allow(clippy::all, clippy::pedantic)] #[allow(missing_docs)] mod knowledge { tonic::include_proto!("mnemos.v1"); } pub mod client; pub mod server; pub use client::KnowledgeClient; pub use knowledge::*; pub use server::KnowledgeServiceImpl;