mirror of https://github.com/tidwall/rtred.git
Renamed project
This commit is contained in:
parent
30a82a5eb7
commit
44647fb8e8
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module github.com/tidwall/rtree
|
||||
module github.com/tidwall/rtreed
|
||||
|
||||
go 1.15
|
||||
|
||||
|
|
1
go.sum
1
go.sum
|
@ -1,2 +1,3 @@
|
|||
github.com/tidwall/rtree v1.2.6 h1:Q4FhJZId5k22IYsZ55Bz8nNo4Z9LyyOzWb+WIwc1vdM=
|
||||
github.com/tidwall/tinyqueue v0.1.1 h1:SpNEvEggbpyN5DIReaJ2/1ndroY8iyEGxPYxoSaymYE=
|
||||
github.com/tidwall/tinyqueue v0.1.1/go.mod h1:O/QNHwrnjqr6IHItYrzoHAKYhBkLI67Q096fQP5zMYw=
|
||||
|
|
4
rtree.go
4
rtree.go
|
@ -1,10 +1,10 @@
|
|||
package rtree
|
||||
package rtreed
|
||||
|
||||
import (
|
||||
"math"
|
||||
"sync"
|
||||
|
||||
"github.com/tidwall/rtree/base"
|
||||
"github.com/tidwall/rtreed/base"
|
||||
)
|
||||
|
||||
type Iterator func(item Item) bool
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package rtree
|
||||
package rtreed
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
|
Loading…
Reference in New Issue