0
0

switching back to the canonical goleveldb repo

This commit is contained in:
Marty Schoch 2015-07-08 12:21:17 -06:00
parent bf80f4628e
commit 17ef48f82a
6 changed files with 9 additions and 9 deletions

View File

@ -11,7 +11,7 @@ package goleveldb
import (
"github.com/blevesearch/bleve/index/store"
"github.com/mschoch/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb"
)
type Batch struct {

View File

@ -10,8 +10,8 @@
package goleveldb
import (
"github.com/mschoch/goleveldb/leveldb"
"github.com/mschoch/goleveldb/leveldb/iterator"
"github.com/syndtr/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb/iterator"
)
type Iterator struct {

View File

@ -11,7 +11,7 @@ package goleveldb
import (
"github.com/blevesearch/bleve/index/store"
"github.com/mschoch/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb"
)
type Reader struct {

View File

@ -15,9 +15,9 @@ import (
"github.com/blevesearch/bleve/index/store"
"github.com/blevesearch/bleve/registry"
"github.com/mschoch/goleveldb/leveldb"
"github.com/mschoch/goleveldb/leveldb/filter"
"github.com/mschoch/goleveldb/leveldb/opt"
"github.com/syndtr/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb/filter"
"github.com/syndtr/goleveldb/leveldb/opt"
)
const Name = "goleveldb"

View File

@ -10,7 +10,7 @@
package goleveldb
import (
"github.com/mschoch/goleveldb/leveldb/opt"
"github.com/syndtr/goleveldb/leveldb/opt"
)
func defaultWriteOptions() *opt.WriteOptions {

View File

@ -11,7 +11,7 @@ package goleveldb
import (
"github.com/blevesearch/bleve/index/store"
"github.com/mschoch/goleveldb/leveldb"
"github.com/syndtr/goleveldb/leveldb"
)
type Writer struct {