mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 03:04:47 -05:00
10 lines
231 B
Protocol Buffer
Vendored
10 lines
231 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Requests;
|
|
|
|
import "POGOProtos/Networking/Requests/RequestType.proto";
|
|
|
|
message Request {
|
|
.POGOProtos.Networking.Requests.RequestType request_type = 1;
|
|
bytes request_message = 2;
|
|
}
|