Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 740 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 740 Bytes

Pokémon Go Protobuffers for Golang

Exported from and maintained at https://github.com/AeonLucid/POGOProtos

Usage

package main

import (
  "fmt"
  p "github.com/pkmngo-odi/pogo-protos"
)

func main() {
  fmt.Println(p.TeamColor_BLUE)
}

Update this repository

Install the Go protoc extensions through go get

go get -u github.com/golang/protobuf/{proto,protoc-gen-go}

Check out the AeonLucid/POGOProtos repository and run their scripts.

$ git clone [email protected]:AeonLucid/POGOProtos.git
$ cd POGOProtos
$ python ./compile_single.py -l=go --out_path=$GOPATH/src/github.com/pkmngo-odi/pogo-protos --go_root_package=github.com/pkmngo-odi/pogo-protos