mirror of https://github.com/tidwall/rtred.git
Rename project again
This commit is contained in:
parent
44647fb8e8
commit
22ac750bcf
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module github.com/tidwall/rtreed
|
||||
module github.com/tidwall/rtred
|
||||
|
||||
go 1.15
|
||||
|
||||
|
|
1
go.sum
1
go.sum
|
@ -1,3 +1,2 @@
|
|||
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 rtreed
|
||||
package rtred
|
||||
|
||||
import (
|
||||
"math"
|
||||
"sync"
|
||||
|
||||
"github.com/tidwall/rtreed/base"
|
||||
"github.com/tidwall/rtred/base"
|
||||
)
|
||||
|
||||
type Iterator func(item Item) bool
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package rtreed
|
||||
package rtred
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
|
Loading…
Reference in New Issue