Ver código fonte

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

Ben Hood 10 anos atrás
pai
commit
02f4651206
2 arquivos alterados com 2 adições e 2 exclusões
  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"
 )