This commit is contained in:
Sebastien Binet 2015-06-11 10:18:30 +02:00
Родитель eaa750b9bf
Коммит c5eccb269a
5 изменённых файлов: 2 добавлений и 2 удалений

2
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.

Просмотреть файл

Просмотреть файл

Просмотреть файл

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

Просмотреть файл