blob: 42b7044d58fb54921c5d78bffa45e338c1254285 [file]
syntax = "proto3";
package examples.proto;
option go_package = "github.com/rules-proto-grpc/rules_proto_grpc/examples/proto";
service CustomerService {
rpc GetCustomer(GetCustomerRequest) returns (GetCustomerResponse) {}
}
message Customer {
string id = 1;
string name = 2;
}
message GetCustomerRequest {
string id = 1;
}
message GetCustomerResponse {
Customer customer = 1;
}