git.colasdn.top/newrelic/go-agent@v3.26.0+incompatible/_integrations/nrmicro/example/proto/greeter.proto (about) 1 // Copyright 2020 New Relic Corporation. All rights reserved. 2 // SPDX-License-Identifier: Apache-2.0 3 4 syntax = "proto3"; 5 6 service Greeter { 7 rpc Hello(HelloRequest) returns (HelloResponse) {} 8 } 9 10 message HelloRequest { 11 string name = 1; 12 } 13 14 message HelloResponse { 15 string greeting = 2; 16 }