go.mod: use go.etcd.io/etcd/v3 versioning

This change makes the etcd package compatible with the existing Go
ecosystem for module versioning.

Used this tool to update package imports:
  https://github.com/KSubedi/gomove
This commit is contained in:
Brandon Philips
2020-04-26 21:03:37 +00:00
parent 262c939805
commit 96cce208c2
558 changed files with 1475 additions and 1434 deletions

View File

@ -17,13 +17,13 @@ package main
import (
"encoding/binary"
"fmt"
"go.etcd.io/etcd/auth/authpb"
"go.etcd.io/etcd/v3/auth/authpb"
"path/filepath"
"go.etcd.io/etcd/lease/leasepb"
"go.etcd.io/etcd/mvcc"
"go.etcd.io/etcd/mvcc/backend"
"go.etcd.io/etcd/mvcc/mvccpb"
"go.etcd.io/etcd/v3/lease/leasepb"
"go.etcd.io/etcd/v3/mvcc"
"go.etcd.io/etcd/v3/mvcc/backend"
"go.etcd.io/etcd/v3/mvcc/mvccpb"
bolt "go.etcd.io/bbolt"
)