qedus / osmpbf

OpenStreetMap PBF file format parser in Go Lang.
MIT License
142 stars 30 forks source link

import "code.google.com/p/goprotobuf/proto" #9

Closed kkdd closed 9 years ago

kkdd commented 9 years ago

I found the following error when executing a program: >> cannot find package "code.google.com/p/goprotobuf/proto"

And I have successfully run the program by modifying as follows:

- import "code.google.com/p/goprotobuf/proto"
+ import "github.com/golang/protobuf/proto"
jongillham commented 9 years ago

Commit bff90e1 fixes this.