Files
supermegamestre 4bbd74a497 First Upload
Just the APK
Force update disabled, will only work offline.
2026-01-26 00:26:29 -03:00

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;
}