proto 파일에 대한 기본 구조를 설명한다. syntax = "proto3"; package gRPCproto; service TestService { rpc TestMessage(Request) returns (Response); } message Request { string strName = 1; string strName2 = 2; } message Response{ string strName1 = 1; string strName2 = 2; } 확장자 : .proto 1. 버전 명시 syntax = "proto3"; proto 파일에 대한 버전을 명시한다. 버전에 따라 지원되는 언어가 다르다. 2. 패키지명 지정 package gRPCproto; 패키지명을 지정할 수 있다. 다른 곳의 코드와 충..