github.com/chrusty/openapi2proto@v0.0.0-20171127225041-f5804f48ccdb/fixtures/includes_query.proto (about)

     1  syntax = "proto3";
     2  
     3  package badapi;
     4  
     5  message GetBadPathWithQueryRequest {
     6      // Bad parameter.
     7      string badness = 1;
     8  }
     9  
    10  message GetBadPathWithQueryResponse {
    11      repeated string items = 1;
    12  }
    13  
    14  service BadAPIService {
    15      // Bad Call
    16      // 
    17      // Call which includes a query in its path.
    18      rpc GetBadPathWithQuery(GetBadPathWithQueryRequest) returns (GetBadPathWithQueryResponse) {}
    19  }