mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-24 14:57:08 -05:00
- Added mongodb database - Removed dumps - Added jwt google auth decode plugin - Added long decode plugin - Updated protos to latest commit - Updated readme - Added avatar saving - Fixed bug, where username, level and exp didnt got displayed - Default username is "undefined" - Clear console stdin - Save players into db stdin - Seperated login/register phase - Added decode long util method
19 lines
405 B
Protocol Buffer
Vendored
19 lines
405 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Networking.Responses;
|
|
|
|
import "POGOProtos/Data/Gym/GymState.proto";
|
|
|
|
message GetGymDetailsResponse {
|
|
.POGOProtos.Data.Gym.GymState gym_state = 1;
|
|
string name = 2;
|
|
repeated string urls = 3;
|
|
.POGOProtos.Networking.Responses.GetGymDetailsResponse.Result result = 4;
|
|
string description = 5;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
ERROR_NOT_IN_RANGE = 2;
|
|
}
|
|
}
|