mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-20 16:37:22 -05:00
10 lines
228 B
Protocol Buffer
Vendored
10 lines
228 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/AssetDigestEntry.proto";
|
|
|
|
message GetAssetDigestResponse {
|
|
repeated .POGOProtos.Data.AssetDigestEntry digest = 1;
|
|
uint64 timestamp_ms = 2;
|
|
}
|