github.com/cloudwego/kitex@v0.9.0/pkg/generic/jsonpb_test/idl/echo.proto (about) 1 syntax = "proto3"; 2 package test; 3 // The greeting service definition. 4 option go_package = "./"; 5 6 message Request { 7 string message = 1; 8 } 9 10 message Response { 11 string message = 1; 12 } 13 14 service Echo { 15 rpc Echo (Request) returns (Response) {} 16 }