github.com/yoheimuta/protolint@v0.49.8-0.20240515023657-4ecaebb7575d/_testdata/rules/rpcNamesUpperCamelCase/upperCamelCase.proto (about) 1 syntax = "proto3"; 2 3 service SearchApi { 4 rpc Search (SearchRequest) returns (SearchResponse) {}; 5 }; 6 7 service SearchLocationApi { 8 rpc SearchLocationPrimary (SearchRequest2) returns (SearchResponse2) {}; 9 rpc SearchLocation (SearchRequest3) returns (SearchResponse3) {}; 10 };