mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
*: revert module import paths
Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
This commit is contained in:
@@ -20,7 +20,7 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
func NewAuthCommands() cli.Command {
|
||||
|
||||
@@ -23,15 +23,15 @@ import (
|
||||
"regexp"
|
||||
"time"
|
||||
|
||||
"go.etcd.io/etcd/v3/etcdserver/api/membership"
|
||||
"go.etcd.io/etcd/v3/etcdserver/api/snap"
|
||||
"go.etcd.io/etcd/v3/etcdserver/etcdserverpb"
|
||||
"go.etcd.io/etcd/v3/pkg/fileutil"
|
||||
"go.etcd.io/etcd/v3/pkg/idutil"
|
||||
"go.etcd.io/etcd/v3/pkg/pbutil"
|
||||
"go.etcd.io/etcd/v3/raft/raftpb"
|
||||
"go.etcd.io/etcd/v3/wal"
|
||||
"go.etcd.io/etcd/v3/wal/walpb"
|
||||
"go.etcd.io/etcd/etcdserver/api/membership"
|
||||
"go.etcd.io/etcd/etcdserver/api/snap"
|
||||
"go.etcd.io/etcd/etcdserver/etcdserverpb"
|
||||
"go.etcd.io/etcd/pkg/fileutil"
|
||||
"go.etcd.io/etcd/pkg/idutil"
|
||||
"go.etcd.io/etcd/pkg/pbutil"
|
||||
"go.etcd.io/etcd/raft/raftpb"
|
||||
"go.etcd.io/etcd/wal"
|
||||
"go.etcd.io/etcd/wal/walpb"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
bolt "go.etcd.io/bbolt"
|
||||
|
||||
@@ -24,7 +24,7 @@ import (
|
||||
"os/signal"
|
||||
"time"
|
||||
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
@@ -20,7 +20,7 @@ import (
|
||||
"os"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
@@ -22,7 +22,7 @@ import (
|
||||
"os/exec"
|
||||
"os/signal"
|
||||
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
@@ -19,7 +19,7 @@ import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
// printResponseKey only supports to print key correctly.
|
||||
|
||||
@@ -20,7 +20,7 @@ import (
|
||||
"os"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
// NewGetCommand returns the CLI command for "get".
|
||||
|
||||
@@ -18,7 +18,7 @@ import (
|
||||
"fmt"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
func NewLsCommand() cli.Command {
|
||||
|
||||
@@ -20,7 +20,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
// NewMakeCommand returns the CLI command for "mk".
|
||||
|
||||
@@ -19,7 +19,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
// NewMakeDirCommand returns the CLI command for "mkdir".
|
||||
|
||||
@@ -18,7 +18,7 @@ import (
|
||||
"errors"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
// NewRemoveCommand returns the CLI command for "rm".
|
||||
|
||||
@@ -18,7 +18,7 @@ import (
|
||||
"errors"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
// NewRemoveDirCommand returns the CLI command for "rmdir".
|
||||
|
||||
@@ -21,8 +21,8 @@ import (
|
||||
"strings"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/v3/pkg/pathutil"
|
||||
"go.etcd.io/etcd/client"
|
||||
"go.etcd.io/etcd/pkg/pathutil"
|
||||
)
|
||||
|
||||
func NewRoleCommands() cli.Command {
|
||||
|
||||
@@ -20,7 +20,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
// NewSetCommand returns the CLI command for "set".
|
||||
|
||||
@@ -16,7 +16,7 @@ package command
|
||||
|
||||
import (
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
// NewSetDirCommand returns the CLI command for "setDir".
|
||||
|
||||
@@ -20,7 +20,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
// NewUpdateCommand returns the CLI command for "update".
|
||||
|
||||
@@ -19,7 +19,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
// NewUpdateDirCommand returns the CLI command for "updatedir".
|
||||
|
||||
@@ -21,7 +21,7 @@ import (
|
||||
|
||||
"github.com/bgentry/speakeasy"
|
||||
"github.com/urfave/cli"
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
)
|
||||
|
||||
func NewUserCommands() cli.Command {
|
||||
|
||||
@@ -28,8 +28,8 @@ import (
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/v3/pkg/transport"
|
||||
"go.etcd.io/etcd/client"
|
||||
"go.etcd.io/etcd/pkg/transport"
|
||||
|
||||
"github.com/bgentry/speakeasy"
|
||||
"github.com/urfave/cli"
|
||||
|
||||
@@ -21,7 +21,7 @@ import (
|
||||
"os"
|
||||
"os/signal"
|
||||
|
||||
"go.etcd.io/etcd/v3/client"
|
||||
"go.etcd.io/etcd/client"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
@@ -20,8 +20,8 @@ import (
|
||||
"os"
|
||||
"time"
|
||||
|
||||
"go.etcd.io/etcd/v3/etcdctl/ctlv2/command"
|
||||
"go.etcd.io/etcd/v3/version"
|
||||
"go.etcd.io/etcd/etcdctl/ctlv2/command"
|
||||
"go.etcd.io/etcd/version"
|
||||
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user