A Code is a status code defined according to the [gRPC documentation]. Only the codes defined as consts in this package are valid codes. Do not use other code values. Behavior of other codes is implementation-specific and interoperability between implementations is not guaranteed. [gRPC documenta
| 33 | // |
| 34 | // [gRPC documentation]: https://github.com/grpc/grpc/blob/master/doc/statuscodes.md |
| 35 | type Code uint32 |
| 36 | |
| 37 | const ( |
| 38 | // OK is returned on success. |
no outgoing calls
no test coverage detected