Renamed project

This commit is contained in:
tidwall 2021-02-07 17:24:44 -07:00
parent 30a82a5eb7
commit 44647fb8e8
4 changed files with 5 additions and 4 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/tidwall/rtree module github.com/tidwall/rtreed
go 1.15 go 1.15

1
go.sum
View File

@ -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 h1:SpNEvEggbpyN5DIReaJ2/1ndroY8iyEGxPYxoSaymYE=
github.com/tidwall/tinyqueue v0.1.1/go.mod h1:O/QNHwrnjqr6IHItYrzoHAKYhBkLI67Q096fQP5zMYw= github.com/tidwall/tinyqueue v0.1.1/go.mod h1:O/QNHwrnjqr6IHItYrzoHAKYhBkLI67Q096fQP5zMYw=

View File

@ -1,10 +1,10 @@
package rtree package rtreed
import ( import (
"math" "math"
"sync" "sync"
"github.com/tidwall/rtree/base" "github.com/tidwall/rtreed/base"
) )
type Iterator func(item Item) bool type Iterator func(item Item) bool

View File

@ -1,4 +1,4 @@
package rtree package rtreed
import ( import (
"fmt" "fmt"