소스 검색

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"
 )