19 lines
299 B
Protocol Buffer
19 lines
299 B
Protocol Buffer
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
syntax = "proto3";
|
|
|
|
package grpc_example;
|
|
|
|
service Greeter {
|
|
rpc Greet(GreetRequest) returns (GreetResponse) {}
|
|
}
|
|
|
|
message GreetRequest {
|
|
string request = 1;
|
|
}
|
|
|
|
message GreetResponse {
|
|
string response = 1;
|
|
}
|