Imports of package command

PathSynopsis
bufioPackage bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O.
contextPackage context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
crypto/sha256Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4.
crypto/tlsPackage tls partially implements TLS 1.2, as specified in RFC 5246, and TLS 1.3, as specified in RFC 8446.
encoding/binaryPackage binary implements simple translation between numbers and byte sequences and encoding and decoding of varints.
encoding/hexPackage hex implements hexadecimal encoding and decoding.
encoding/jsonPackage json implements encoding and decoding of JSON as defined in RFC 7159.
errorsPackage errors implements functions to manipulate errors.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
github.com/bgentry/speakeasy
github.com/coreos/bbolt
github.com/coreos/etcd/clientPackage client provides bindings for the etcd APIs.
github.com/coreos/etcd/clientv3clientv3 is the official Go etcd client for v3.
github.com/coreos/etcd/clientv3/concurrency
github.com/coreos/etcd/clientv3/mirror
github.com/coreos/etcd/errorerror package describes errors in etcd project.
github.com/coreos/etcd/etcdserverPackage etcdserver defines how etcd servers interact and store their states.
github.com/coreos/etcd/etcdserver/api
github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes
github.com/coreos/etcd/etcdserver/etcdserverpbPackage etcdserverpb is a generated protocol buffer package.
github.com/coreos/etcd/etcdserver/membership
github.com/coreos/etcd/lease
github.com/coreos/etcd/mvcc
github.com/coreos/etcd/mvcc/backend
github.com/coreos/etcd/mvcc/mvccpb
github.com/coreos/etcd/pkg/fileutilPackage fileutil implements utility functions related to files and paths.
github.com/coreos/etcd/pkg/flagsPackage flags implements command-line flag parsing.
github.com/coreos/etcd/pkg/pbutilPackage pbutil defines interfaces for handling Protocol Buffer objects.
github.com/coreos/etcd/pkg/report
github.com/coreos/etcd/pkg/srv
github.com/coreos/etcd/pkg/transportPackage transport implements various HTTP transport utilities based on Go net package.
github.com/coreos/etcd/pkg/typesPackage types declares various data types and implements type-checking functions.
github.com/coreos/etcd/raftPackage raft sends and receives messages in the Protocol Buffer format defined in the raftpb package.
github.com/coreos/etcd/raft/raftpbPackage raftpb is a generated protocol buffer package.
github.com/coreos/etcd/snapPackage snap stores raft nodes' states with snapshots.
github.com/coreos/etcd/storePackage store defines etcd's in-memory key/value store.
github.com/coreos/etcd/versionPackage version implements etcd version parsing and contains latest version information.
github.com/coreos/etcd/walPackage wal provides an implementation of a write ahead log that is used by etcd.
github.com/coreos/etcd/wal/walpbPackage walpb is a generated protocol buffer package.
github.com/dustin/go-humanizePackage humanize converts boring ugly numbers to human-friendly strings and back.
github.com/gogo/protobuf/protoPackage proto converts data structures to and from the wire format of protocol buffers.
github.com/olekukonko/tablewriter
github.com/spf13/cobraPackage cobra is a commander providing a simple interface to create powerful modern CLI interfaces.
github.com/spf13/pflagPackage pflag is a drop-in replacement for Go's flag package, implementing POSIX/GNU-style --flags.
golang.org/x/time/ratePackage rate provides a rate limiter.
google.golang.org/grpc/grpclogPackage grpclog defines logging for grpc.
gopkg.in/cheggaaa/pb.v1Simple console progress bars
hash/crc32Package crc32 implements the 32-bit cyclic redundancy check, or CRC-32, checksum.
ioPackage io provides basic interfaces to I/O primitives.
io/ioutilPackage ioutil implements some I/O utility functions.
mathPackage math provides basic constants and mathematical functions.
math/randPackage rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
osPackage os provides a platform-independent interface to operating system functionality.
os/execPackage exec runs external commands.
os/signalPackage signal implements access to incoming signals.
path/filepathPackage filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
reflectPackage reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
regexpPackage regexp implements regular expression search.
strconvPackage strconv implements conversions to and from string representations of basic data types.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
syncPackage sync provides basic synchronization primitives such as mutual exclusion locks.
sync/atomicPackage atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms.
syscallPackage syscall contains an interface to the low-level operating system primitives.
timePackage time provides functionality for measuring and displaying time.