Forráskód Böngészése

Merge pull request #14 from sbinet/simpler-import-path

all: simpler import path
Nigel Tao 10 éve
szülő
commit
7a1576592b
7 módosított fájl, 4 hozzáadás és 2 törlés
  1. 1 0
      AUTHORS
  2. 1 0
      CONTRIBUTORS
  3. 1 1
      README
  4. 0 0
      decode.go
  5. 0 0
      encode.go
  6. 1 1
      snappy.go
  7. 0 0
      snappy_test.go

+ 1 - 0
AUTHORS

@@ -10,3 +10,4 @@
 
 Google Inc.
 Jan Mercl <0xjnml@gmail.com>
+Sebastien Binet <seb.binet@gmail.com>

+ 1 - 0
CONTRIBUTORS

@@ -32,3 +32,4 @@ Marc-Antoine Ruel <maruel@chromium.org>
 Nigel Tao <nigeltao@golang.org>
 Rob Pike <r@golang.org>
 Russ Cox <rsc@golang.org>
+Sebastien Binet <seb.binet@gmail.com>

+ 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