blob: 1b954fc1b3fb13e8f612e93c9d71426646a1298a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
syntax = "proto3";
package app.namespace;
import "message.proto";
import "pong.proto";
// Ping Service.
service PingService {
// Ping Method.
rpc Ping (Message) returns (Message) {
}
}
|