Skip to content

Commit 36632d4

Browse files
committed
Merge pull request #5 from MJDSys/gogoprotobuf_fix
Change all references to code.google.com/p/gogoprotobuf to github.com…
2 parents 57ca392 + c8a887c commit 36632d4

File tree

6 files changed

+12
-15
lines changed

6 files changed

+12
-15
lines changed

reaper/reaper_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package reaper
22

33
import (
4-
"code.google.com/p/gogoprotobuf/proto"
54
"fmt"
5+
"github.com/gogo/protobuf/proto"
66
"testing"
77
"time"
88

shared/protobuf/session.pb.go

+6-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shared/utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package shared
33
import (
44
"time"
55

6-
"code.google.com/p/gogoprotobuf/proto"
6+
"github.com/gogo/protobuf/proto"
77
"github.com/yosssi/boltstore/shared/protobuf"
88
)
99

shared/utils_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package shared
22

33
import (
4+
"github.com/yosssi/boltstore/shared/protobuf"
45
"testing"
56
"time"
6-
"github.com/yosssi/boltstore/shared/protobuf"
77

8-
"code.google.com/p/gogoprotobuf/proto"
8+
"github.com/gogo/protobuf/proto"
99
)
1010

1111
func TestSession(t *testing.T) {

store/store.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"bytes"
55
"encoding/base32"
66
"encoding/gob"
7+
"github.com/gogo/protobuf/proto"
78
"net/http"
89
"strings"
9-
"code.google.com/p/gogoprotobuf/proto"
1010

1111
"github.com/boltdb/bolt"
1212
"github.com/gorilla/securecookie"

store/store_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"testing"
1010
"time"
1111

12-
"code.google.com/p/gogoprotobuf/proto"
12+
"github.com/gogo/protobuf/proto"
1313

1414
"github.com/boltdb/bolt"
1515
"github.com/gorilla/securecookie"

0 commit comments

Comments
 (0)