mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-09-09 00:03:00 +02:00
18 lines
299 B
Protocol Buffer
18 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;
|
|
}
|