浏览代码

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

Ben Hood 10 年之前
父节点
当前提交
02f4651206
共有 2 个文件被更改,包括 2 次插入2 次删除
  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"
 )