make osmpbf protobuf package internal

master
Oliver Tonnhofer 2016-12-06 15:36:16 +01:00
parent a685d363e5
commit aaadf730ac
7 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ import (
"time"
"github.com/golang/protobuf/proto"
"github.com/omniscale/imposm3/parser/pbf/osmpbf"
"github.com/omniscale/imposm3/parser/pbf/internal/osmpbf"
)
type block struct {

View File

@ -2,7 +2,7 @@ package pbf
import (
"github.com/omniscale/imposm3/element"
"github.com/omniscale/imposm3/parser/pbf/osmpbf"
"github.com/omniscale/imposm3/parser/pbf/internal/osmpbf"
)
const coord_factor float64 = 11930464.7083 // ((2<<31)-1)/360.0

View File

@ -9,7 +9,7 @@ import (
"testing"
"github.com/golang/protobuf/proto"
"github.com/omniscale/imposm3/parser/pbf/osmpbf"
"github.com/omniscale/imposm3/parser/pbf/internal/osmpbf"
)
func BenchmarkHello(b *testing.B) {