1syntax = "proto3"; 2 3package test; 4 5service Test { 6 rpc Rpc(Input) returns (Output); 7} 8 9message Input {} 10 11message Output {} 12