refactor!: autocli go.mod and package naming (#13294)

This commit is contained in:
Aaron Craelius 2022-09-14 17:11:11 -04:00 committed by GitHub
parent 85422881cf
commit ae21d8c780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 8 additions and 8 deletions

View File

@ -5,7 +5,7 @@ import (
"google.golang.org/grpc"
"github.com/cosmos/cosmos-sdk/client/v2/cli/flag"
"cosmossdk.io/client/v2/cli/flag"
)
// Builder manages options for building CLI commands.

View File

@ -9,7 +9,7 @@ import (
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/reflect/protoreflect"
"github.com/cosmos/cosmos-sdk/client/v2/internal/util"
"cosmossdk.io/client/v2/internal/util"
)
// FieldValueBinder wraps a flag value in a way that allows it to be bound

View File

@ -9,7 +9,7 @@ import (
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/reflect/protoreflect"
"github.com/cosmos/cosmos-sdk/client/v2/internal/util"
"cosmossdk.io/client/v2/internal/util"
)
type jsonMessageFlagType struct {

View File

@ -6,7 +6,7 @@ import (
"github.com/spf13/pflag"
"google.golang.org/protobuf/reflect/protoreflect"
"github.com/cosmos/cosmos-sdk/client/v2/internal/util"
"cosmossdk.io/client/v2/internal/util"
)
func (b *Builder) bindPageRequest(ctx context.Context, flagSet *pflag.FlagSet, field protoreflect.FieldDescriptor) FieldValueBinder {

View File

@ -9,8 +9,8 @@ import (
"google.golang.org/protobuf/reflect/protoreflect"
"google.golang.org/protobuf/reflect/protoregistry"
"github.com/cosmos/cosmos-sdk/client/v2/cli/flag"
"github.com/cosmos/cosmos-sdk/client/v2/internal/util"
"cosmossdk.io/client/v2/cli/flag"
"cosmossdk.io/client/v2/internal/util"
)
// AddQueryServiceCommands adds a sub-command to the provided command for each

View File

@ -14,7 +14,7 @@ import (
"gotest.tools/v3/assert"
"gotest.tools/v3/golden"
"github.com/cosmos/cosmos-sdk/client/v2/internal/testpb"
"cosmossdk.io/client/v2/internal/testpb"
)
func testExec(t *testing.T, args ...string) *testClientConn {

View File

@ -1,4 +1,4 @@
module github.com/cosmos/cosmos-sdk/client/v2
module cosmossdk.io/client/v2
go 1.18