Skip to content

Commit

Permalink
[FEAT] 내부용 protocol 추가 (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyoo0515 authored Feb 18, 2024
1 parent 4853acd commit 895a91f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions proto/internal.proto
Original file line number Diff line number Diff line change
@@ -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);
}

0 comments on commit 895a91f

Please sign in to comment.