- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
14 lines
419 B
Protocol Buffer
14 lines
419 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gatewayprotocol.v1;
|
|
|
|
option swift_prefix = "Gateway";
|
|
|
|
// Error is a general error returned from a service. It can be returned via the payload
|
|
// to indicate that an error occurred within the service itself, or alongside the response
|
|
// to indicate failure to communicate with that service (reachability, timeout, etc.)
|
|
message Error {
|
|
// The text of the error.
|
|
string error_text = 2;
|
|
}
|