#[allow(
missing_docs,
unused_qualifications,
clippy::complexity,
clippy::correctness,
clippy::nursery,
clippy::pedantic,
clippy::perf,
clippy::restriction,
clippy::style,
clippy::suspicious,
reason = "generated protobuf code from tonic::include_proto!"
)]
pub mod proto {
tonic::include_proto!("lf.a2a.v1");
}
pub(crate) mod convert;
mod server;
pub use convert::{hashmap_to_struct, json_to_struct, struct_to_hashmap, struct_to_json};
pub use proto::a2a_service_client::A2aServiceClient;
pub use proto::a2a_service_server::{A2aService, A2aServiceServer};
pub use server::GrpcServiceImpl;