*: update import paths to "go.etcd.io/etcd"

Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
This commit is contained in:
Gyuho Lee
2018-08-28 17:13:25 -07:00
parent 2ac04381a2
commit d37f1521b7
278 changed files with 623 additions and 623 deletions

View File

@ -13,16 +13,16 @@
// limitations under the License.
// Package main is a simple wrapper of the real etcd entrypoint package
// (located at github.com/coreos/etcd/etcdmain) to ensure that etcd is still
// "go getable"; e.g. `go get github.com/coreos/etcd` works as expected and
// (located at go.etcd.io/etcd/etcdmain) to ensure that etcd is still
// "go getable"; e.g. `go get go.etcd.io/etcd` works as expected and
// builds a binary in $GOBIN/etcd
//
// This package should NOT be extended or modified in any way; to modify the
// etcd binary, work in the `github.com/coreos/etcd/etcdmain` package.
// etcd binary, work in the `go.etcd.io/etcd/etcdmain` package.
//
package main
import "github.com/coreos/etcd/etcdmain"
import "go.etcd.io/etcd/etcdmain"
func main() {
etcdmain.Main()