Browse Source

Let's see if the github variant of snappy is any better than the one from google

Ben Hood 10 years ago
parent
commit
02f4651206
2 changed files with 2 additions and 2 deletions
  1. 1 1
      compressor.go
  2. 1 1
      compressor_test.go

+ 1 - 1
compressor.go

@@ -1,7 +1,7 @@
 package gocql
 
 import (
-	"code.google.com/p/snappy-go/snappy"
+	"github.com/golang/snappy/snappy"
 )
 
 type Compressor interface {

+ 1 - 1
compressor_test.go

@@ -4,7 +4,7 @@ package gocql
 
 import (
 	"bytes"
-	"code.google.com/p/snappy-go/snappy"
+	"github.com/golang/snappy/snappy"
 	"testing"
 )