...

Text file src/github.com/grpc-ecosystem/go-grpc-prometheus/examples/grpc-server-with-prometheus/protobuf/service.proto

Documentation: github.com/grpc-ecosystem/go-grpc-prometheus/examples/grpc-server-with-prometheus/protobuf

     1syntax="proto3";
     2
     3package proto;
     4
     5service DemoService {
     6    rpc SayHello(HelloRequest) returns (HelloResponse) {}
     7}
     8
     9message HelloRequest {
    10    string name = 1;
    11}
    12
    13message HelloResponse {
    14    string message = 1;
    15}

View as plain text