Skip to content
This repository was archived by the owner on Dec 9, 2018. It is now read-only.

Commit 0b8a7a3

Browse files
author
Jason Abbott
committed
update package names
1 parent a7ebb02 commit 0b8a7a3

File tree

19 files changed

+27
-27
lines changed

19 files changed

+27
-27
lines changed

client.go.old

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package db
44

55
import (
6-
"toba.io/lib/db/key"
7-
"toba.io/lib/db/store"
6+
"github.com/toba/pbdb/key"
7+
"github.com/toba/pbdb/store"
88

99
"github.com/boltdb/bolt"
1010
)

codec_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"testing"
55

66
"github.com/stretchr/testify/assert"
7-
"toba.io/lib/db"
8-
"toba.io/lib/db/schema"
7+
"github.com/toba/pbdb"
8+
"github.com/toba/pbdb/schema"
99
)
1010

1111
var (

crud.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package db
1+
package pbdb
22

33
import (
44
"github.com/boltdb/bolt"
5-
"toba.io/lib/db/index"
6-
"toba.io/lib/db/key"
7-
"toba.io/lib/db/store"
5+
"github.com/toba/pbdb/index"
6+
"github.com/toba/pbdb/key"
7+
"github.com/toba/pbdb/store"
88
)
99

1010
type (

crud_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77

88
"github.com/stretchr/testify/assert"
99

10+
"github.com/toba/pbdb"
11+
"github.com/toba/pbdb/index"
1012
"toba.io/lib/config"
11-
"toba.io/lib/db"
12-
"toba.io/lib/db/index"
1313
)
1414

1515
type TestSchema struct {

db.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Package db creates and verifies BoltDB database files.
2-
package db
2+
package pbdb
33

44
import (
55
"toba.io/lib/config"

db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package db_test
1+
package pbdb_test
22

33
import (
44
"io/ioutil"

errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package db
1+
package pbdb
22

33
import "errors"
44

files.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package db
1+
package pbdb
22

33
import (
44
"sync"

files_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
package db_test
1+
package pbdb_test

index.go.old

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package db
1+
package pbdb
22

3-
import "toba.io/lib/db/index"
3+
import "github.com/toba/pbdb/index"
44

55
// saveIndexes iterates over indexable values indicated for a store.Value
66
// and saves or updates them.

0 commit comments

Comments
 (0)