File: command_line.proto

package info (click to toggle)
golang-github-grpc-ecosystem-grpc-opentracing 0.0~git20180507.8e809c8-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-proposed-updates, bullseye
  • size: 576 kB
  • sloc: python: 2,021; java: 1,077; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto3";

package command_line;

service CommandLine {
  rpc Echo(CommandRequest) returns (CommandResponse) {}
}

message CommandRequest {
  string text = 1;
}

message CommandResponse {
  string text = 1;
}