deprecation.proto 464 B

12345678910111213141516171819
  1. // Copyright 2018 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. syntax = "proto3";
  5. package goproto.protoc.grpc;
  6. import "grpc/grpc.proto";
  7. option go_package = "google.golang.org/protobuf/cmd/protoc-gen-go/testdata/grpc";
  8. service DeprecatedService {
  9. option deprecated = true;
  10. rpc DeprecatedCall(Request) returns (Response) {
  11. option deprecated = true;
  12. }
  13. }