go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/grpc/grpcmon/echo.proto (about) 1 // Copyright 2021 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 grpcmon; 8 9 option go_package = "go.chromium.org/luci/grpc/grpcmon"; 10 11 service Echo{ 12 rpc Say (SayRequest) returns (SayResponse) {} 13 } 14 15 message SayRequest { 16 string msg = 1; 17 } 18 19 message SayResponse { 20 string msg = 2; 21 }