// Copyright AGNTCY Contributors (https://github.com/agntcy)
// SPDX-License-Identifier: Apache-2.0
#[rustfmt::skip]
pub mod helloworld;
use tonic::{Request, Response, Status};
#[derive(Default)]
pub struct Empty {}
impl Empty {
pub fn new() -> Self {
Self {}
}
}
#[tonic::async_trait]
impl helloworld::greeter_server::Greeter for Empty {
async fn say_hello(
&self,
request: Request<helloworld::HelloRequest>,
) -> Result<Response<helloworld::HelloReply>, Status> {
let reply = helloworld::HelloReply {
message: format!("Hello {}!", request.into_inner().name),
};
Ok(Response::new(reply))
}
}