go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/grpc/prpc/e2etest/helloworld_test.proto (about)

     1  // Copyright 2016 The LUCI Authors. All rights reserved.
     2  // Use of this source code is governed under the Apache License, Version 2.0
     3  // that can be found in the LICENSE file.
     4  
     5  syntax = "proto3";
     6  
     7  package e2etest;
     8  
     9  option go_package = "go.chromium.org/luci/grpc/prpc/e2etest";
    10  
    11  // The request message containing the user's name.
    12  message HelloRequest {
    13    string name = 1;
    14  }
    15  
    16  // The response message containing the greetings
    17  message HelloReply {
    18    string message = 1;
    19  }
    20  
    21  service Hello {
    22    rpc Greet(HelloRequest) returns (HelloReply);
    23  }