mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-29 17:26:52 -05:00
10 lines
222 B
Protocol Buffer
Vendored
10 lines
222 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/DownloadUrlEntry.proto";
|
|
|
|
// UNTESTED
|
|
message GetDownloadUrlsResponse {
|
|
repeated .POGOProtos.Data.DownloadUrlEntry download_urls = 1;
|
|
}
|