From 895a91f3cc4bbf40dc010427e2757ea304ff6457 Mon Sep 17 00:00:00 2001 From: Jason Yoo Date: Sun, 18 Feb 2024 19:11:38 +0900 Subject: [PATCH] =?UTF-8?q?[FEAT]=20=EB=82=B4=EB=B6=80=EC=9A=A9=20protocol?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80=20(#8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- proto/internal.proto | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 proto/internal.proto diff --git a/proto/internal.proto b/proto/internal.proto new file mode 100644 index 0000000..8f1ecd4 --- /dev/null +++ b/proto/internal.proto @@ -0,0 +1,15 @@ +syntax = "proto3"; + +package proto; + +message HelloRequest { + string name = 1; +} + +message HelloResponse { + string message = 1; +} + +service HelloService { + rpc Hello(HelloRequest) returns (HelloResponse); +}