Sebastien Binet 10 лет назад
Родитель
Сommit
c5eccb269a
5 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      README
  2. 0 0
      decode.go
  3. 0 0
      encode.go
  4. 1 1
      snappy.go
  5. 0 0
      snappy_test.go

+ 1 - 1
README

@@ -1,7 +1,7 @@
 The Snappy compression format in the Go programming language.
 
 To download and install from source:
-$ go get github.com/golang/snappy/snappy
+$ go get github.com/golang/snappy
 
 Unless otherwise noted, the Snappy-Go source files are distributed
 under the BSD-style license found in the LICENSE file.

+ 0 - 0
snappy/decode.go → decode.go


+ 0 - 0
snappy/encode.go → encode.go


+ 1 - 1
snappy/snappy.go → snappy.go

@@ -6,7 +6,7 @@
 // It aims for very high speeds and reasonable compression.
 //
 // The C++ snappy implementation is at http://code.google.com/p/snappy/
-package snappy
+package snappy // import "github.com/golang/snappy"
 
 import (
 	"hash/crc32"

+ 0 - 0
snappy/snappy_test.go → snappy_test.go