فهرست منبع

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