| Index: common/prpc/client.go
|
| diff --git a/common/prpc/client.go b/common/prpc/client.go
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..61e02574cf741abdd4db36738049d398408607a2
|
| --- /dev/null
|
| +++ b/common/prpc/client.go
|
| @@ -0,0 +1,12 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +package prpc
|
| +
|
| +const (
|
| + // HeaderGRPCCode is a name of the HTTP header that specifies the
|
| + // gRPC code in the response.
|
| + // A pRPC server must always specify it.
|
| + HeaderGRPCCode = "X-Prpc-Grpc-Code"
|
| +)
|
|
|