Browse Source

pkg: move /crc to /pkg/crc

Xiang Li 11 years ago
parent
commit
2f6086de22
3 changed files with 2 additions and 2 deletions
  1. 0 0
      pkg/crc/crc.go
  2. 1 1
      wal/decoder.go
  3. 1 1
      wal/encoder.go

+ 0 - 0
crc/crc.go → pkg/crc/crc.go


+ 1 - 1
wal/decoder.go

@@ -6,7 +6,7 @@ import (
 	"hash"
 	"io"
 
-	"github.com/coreos/etcd/crc"
+	"github.com/coreos/etcd/pkg/crc"
 	"github.com/coreos/etcd/raft/raftpb"
 	"github.com/coreos/etcd/wal/walpb"
 )

+ 1 - 1
wal/encoder.go

@@ -6,7 +6,7 @@ import (
 	"hash"
 	"io"
 
-	"github.com/coreos/etcd/crc"
+	"github.com/coreos/etcd/pkg/crc"
 	"github.com/coreos/etcd/wal/walpb"
 )