From d78086a5e376fc0d9ee64a1dd8e4113d66dcafd3 Mon Sep 17 00:00:00 2001 From: mo khan Date: Wed, 18 Jun 2025 15:31:26 -0600 Subject: feat: create an grpc server --- proto/helloworld.proto | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 proto/helloworld.proto (limited to 'proto') diff --git a/proto/helloworld.proto b/proto/helloworld.proto new file mode 100644 index 0000000..949b755 --- /dev/null +++ b/proto/helloworld.proto @@ -0,0 +1,14 @@ +syntax = "proto3"; +package helloworld; + +service Greeter { + rpc SayHello (HelloRequest) returns (HelloReply); +} + +message HelloRequest { + string name = 1; +} + +message HelloReply { + string message = 1; +} -- cgit v1.2.3