move diff parser to parser/diff

master
Oliver Tonnhofer 2016-12-06 15:34:01 +01:00
parent 05ee91f8bd
commit a685d363e5
6 changed files with 7 additions and 7 deletions

4
parser/diff/doc.go Normal file
View File

@ -0,0 +1,4 @@
/*
Package diff provides a parser for OSM diff files (.osc).
*/
package diff

View File

@ -1,5 +1,5 @@
/*
Package pbf provides functions for parsing OSM PBF files.
Package pbf provides a parser for OSM PBF files.
The subpackage osmpbf contains the generated code for the OSM .proto files.
*/

View File

@ -6,7 +6,7 @@ import (
"github.com/omniscale/imposm3/element"
"github.com/omniscale/imposm3/expire"
"github.com/omniscale/imposm3/mapping"
"github.com/omniscale/imposm3/update/diff"
"github.com/omniscale/imposm3/parser/diff"
)
type Deleter struct {

View File

@ -1,4 +0,0 @@
/*
Package parser provides a parser for OSM diff files in XML format.
*/
package diff

View File

@ -17,8 +17,8 @@ import (
"github.com/omniscale/imposm3/geom/limit"
"github.com/omniscale/imposm3/logging"
"github.com/omniscale/imposm3/mapping"
"github.com/omniscale/imposm3/parser/diff"
"github.com/omniscale/imposm3/stats"
"github.com/omniscale/imposm3/update/diff"
diffstate "github.com/omniscale/imposm3/update/state"
"github.com/omniscale/imposm3/writer"
)