mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-22 09:27:22 -05:00
8 lines
154 B
Protocol Buffer
Vendored
8 lines
154 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
message GetSuggestedCodenamesResponse {
|
|
repeated string codenames = 1;
|
|
bool success = 2;
|
|
}
|