refactor: rename depinject imports to cosmossdk.io/depinject (#12479)
This commit is contained in:
parent
411c272d01
commit
52bc0c16d3
@ -14,7 +14,7 @@ import (
|
||||
|
||||
appv1alpha1 "cosmossdk.io/api/cosmos/app/v1alpha1"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
|
||||
"cosmossdk.io/core/internal"
|
||||
)
|
||||
|
||||
@ -12,7 +12,7 @@ import (
|
||||
"cosmossdk.io/core/internal"
|
||||
"cosmossdk.io/core/internal/testpb"
|
||||
_ "cosmossdk.io/core/internal/testpb"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
)
|
||||
|
||||
func expectContainerErrorContains(t *testing.T, option depinject.Config, contains string) {
|
||||
|
||||
@ -2,7 +2,7 @@ package appmodule
|
||||
|
||||
import (
|
||||
"cosmossdk.io/core/internal"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
)
|
||||
|
||||
// Option is a functional option for implementing modules.
|
||||
|
||||
@ -5,7 +5,7 @@ go 1.18
|
||||
require (
|
||||
cosmossdk.io/api v0.1.0-alpha8
|
||||
github.com/cosmos/cosmos-proto v1.0.0-alpha7
|
||||
github.com/cosmos/cosmos-sdk/depinject v1.0.0-alpha.4
|
||||
cosmossdk.io/depinject v1.0.0-alpha.4
|
||||
google.golang.org/protobuf v1.28.0
|
||||
gotest.tools/v3 v3.2.0
|
||||
sigs.k8s.io/yaml v1.3.0
|
||||
@ -28,5 +28,5 @@ require (
|
||||
|
||||
replace (
|
||||
cosmossdk.io/api => ../api
|
||||
github.com/cosmos/cosmos-sdk/depinject => ../depinject
|
||||
cosmossdk.io/depinject => ../depinject
|
||||
)
|
||||
|
||||
@ -9,7 +9,7 @@ import (
|
||||
|
||||
appv1alpha1 "cosmossdk.io/api/cosmos/app/v1alpha1"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
)
|
||||
|
||||
// ModuleRegistry is the registry of module initializers indexed by their golang
|
||||
|
||||
@ -6,7 +6,7 @@ import (
|
||||
"sort"
|
||||
|
||||
"cosmossdk.io/core/appmodule"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
||||
@ -10,7 +10,7 @@ import (
|
||||
"github.com/regen-network/gocuke"
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
)
|
||||
|
||||
func TestBindInterface(t *testing.T) {
|
||||
@ -120,7 +120,7 @@ func (s *bindingSuite) ThereIsNoError() {
|
||||
}
|
||||
|
||||
func fullTypeName(typeName string) string {
|
||||
return fmt.Sprintf("github.com/cosmos/cosmos-sdk/depinject_test/depinject_test.%s", typeName)
|
||||
return fmt.Sprintf("cosmossdk.io/depinject_test/depinject_test.%s", typeName)
|
||||
}
|
||||
|
||||
func (s *bindingSuite) ThereIsAGlobalBindingForA(preferredType string, interfaceType string) {
|
||||
|
||||
@ -92,8 +92,8 @@ func invoke(ctr *container, key *moduleKey, invokers []interface{}) error {
|
||||
// instance when an interface of type Duck is requested as an input.
|
||||
//
|
||||
// BindInterface(
|
||||
// "github.com/cosmos/cosmos-sdk/depinject_test/depinject_test.Duck",
|
||||
// "github.com/cosmos/cosmos-sdk/depinject_test/depinject_test.Canvasback")
|
||||
// "cosmossdk.io/depinject_test/depinject_test.Duck",
|
||||
// "cosmossdk.io/depinject_test/depinject_test.Canvasback")
|
||||
func BindInterface(inTypeName string, outTypeName string) Config {
|
||||
return containerConfig(func(ctr *container) error {
|
||||
return bindInterface(ctr, inTypeName, outTypeName, "")
|
||||
@ -107,8 +107,8 @@ func BindInterface(inTypeName string, outTypeName string) Config {
|
||||
//
|
||||
// BindInterfaceInModule(
|
||||
// "moduleFoo",
|
||||
// "github.com/cosmos/cosmos-sdk/depinject_test/depinject_test.Duck",
|
||||
// "github.com/cosmos/cosmos-sdk/depinject_test/depinject_test.Canvasback")
|
||||
// "cosmossdk.io/depinject_test/depinject_test.Duck",
|
||||
// "cosmossdk.io/depinject_test/depinject_test.Canvasback")
|
||||
func BindInterfaceInModule(moduleName string, inTypeName string, outTypeName string) Config {
|
||||
return containerConfig(func(ctr *container) error {
|
||||
return bindInterface(ctr, inTypeName, outTypeName, moduleName)
|
||||
|
||||
@ -7,7 +7,7 @@ import (
|
||||
|
||||
"github.com/pkg/errors"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject/internal/graphviz"
|
||||
"cosmossdk.io/depinject/internal/graphviz"
|
||||
)
|
||||
|
||||
type container struct {
|
||||
|
||||
@ -9,7 +9,7 @@ import (
|
||||
"github.com/stretchr/testify/require"
|
||||
"gotest.tools/v3/golden"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
)
|
||||
|
||||
type KVStoreKey struct {
|
||||
|
||||
@ -6,7 +6,7 @@ import (
|
||||
"path/filepath"
|
||||
"reflect"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject/internal/graphviz"
|
||||
"cosmossdk.io/depinject/internal/graphviz"
|
||||
)
|
||||
|
||||
// DebugOption is a functional option for running a container that controls
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
module github.com/cosmos/cosmos-sdk/depinject
|
||||
module cosmossdk.io/depinject
|
||||
|
||||
go 1.18
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@ import (
|
||||
|
||||
"github.com/pkg/errors"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject/internal/graphviz"
|
||||
"cosmossdk.io/depinject/internal/graphviz"
|
||||
)
|
||||
|
||||
// ManyPerContainerType marks a type which automatically gets grouped together. For an ManyPerContainerType T,
|
||||
|
||||
@ -4,7 +4,7 @@ import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject/internal/util"
|
||||
"cosmossdk.io/depinject/internal/util"
|
||||
)
|
||||
|
||||
// Attributes represents a graphviz attributes map.
|
||||
|
||||
@ -6,7 +6,7 @@ import (
|
||||
"fmt"
|
||||
"io"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject/internal/util"
|
||||
"cosmossdk.io/depinject/internal/util"
|
||||
)
|
||||
|
||||
// Graph represents a graphviz digraph.
|
||||
|
||||
@ -6,7 +6,7 @@ import (
|
||||
"github.com/regen-network/gocuke"
|
||||
"gotest.tools/v3/assert"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
)
|
||||
|
||||
func TestInvoke(t *testing.T) {
|
||||
|
||||
@ -3,7 +3,7 @@ package depinject
|
||||
import (
|
||||
"reflect"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject/internal/graphviz"
|
||||
"cosmossdk.io/depinject/internal/graphviz"
|
||||
)
|
||||
|
||||
type moduleDepProvider struct {
|
||||
|
||||
@ -6,7 +6,7 @@ import (
|
||||
|
||||
"github.com/pkg/errors"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject/internal/graphviz"
|
||||
"cosmossdk.io/depinject/internal/graphviz"
|
||||
)
|
||||
|
||||
// OnePerModuleType marks a type which
|
||||
|
||||
@ -4,7 +4,7 @@ import (
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
)
|
||||
|
||||
type StructIn struct {
|
||||
|
||||
@ -3,7 +3,7 @@ package depinject
|
||||
import (
|
||||
"reflect"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject/internal/graphviz"
|
||||
"cosmossdk.io/depinject/internal/graphviz"
|
||||
)
|
||||
|
||||
type resolver interface {
|
||||
|
||||
@ -3,7 +3,7 @@ package depinject
|
||||
import (
|
||||
"reflect"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject/internal/graphviz"
|
||||
"cosmossdk.io/depinject/internal/graphviz"
|
||||
)
|
||||
|
||||
type simpleProvider struct {
|
||||
|
||||
@ -3,7 +3,7 @@ package depinject
|
||||
import (
|
||||
"reflect"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject/internal/graphviz"
|
||||
"cosmossdk.io/depinject/internal/graphviz"
|
||||
)
|
||||
|
||||
type supplyResolver struct {
|
||||
|
||||
56
depinject/testdata/example.dot
vendored
56
depinject/testdata/example.dot
vendored
@ -1,43 +1,43 @@
|
||||
digraph "" {
|
||||
subgraph "cluster_a" {
|
||||
graph [fontsize="12.0", label="Module: a", penwidth="0.5", style="rounded"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5", shape="box"];
|
||||
"cosmossdk.io/depinject_test.ModuleA.Provide"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5", shape="box"];
|
||||
}
|
||||
|
||||
subgraph "cluster_b" {
|
||||
graph [fontsize="12.0", label="Module: b", penwidth="0.5", style="rounded"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide"[color="black", fontcolor="black", penwidth="1.5", shape="box"];
|
||||
"cosmossdk.io/depinject_test.ModuleB.Provide"[color="black", fontcolor="black", penwidth="1.5", shape="box"];
|
||||
}
|
||||
|
||||
subgraph "cluster_runtime" {
|
||||
graph [fontsize="12.0", label="Module: runtime", penwidth="0.5", style="rounded"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ProvideKVStoreKey"[color="black", fontcolor="black", penwidth="1.5", shape="box"];
|
||||
"cosmossdk.io/depinject_test.ProvideKVStoreKey"[color="black", fontcolor="black", penwidth="1.5", shape="box"];
|
||||
}
|
||||
|
||||
"[]github.com/cosmos/cosmos-sdk/depinject_test.Command"[color="lightgrey", comment="many-per-container", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject.ModuleKey"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject.OwnModuleKey"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KVStoreKey"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KeeperA"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KeeperB"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.MsgClientA"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ProvideMsgClientA"[color="black", fontcolor="black", penwidth="1.5", shape="box"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.TestGraphAndLogOutput"[color="black", fontcolor="black", penwidth="1.5", shape="hexagon"];
|
||||
"map[string]github.com/cosmos/cosmos-sdk/depinject_test.Handler"[color="lightgrey", comment="one-per-module", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject.ModuleKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.ProvideMsgClientA";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ProvideMsgClientA" -> "github.com/cosmos/cosmos-sdk/depinject_test.MsgClientA";
|
||||
"github.com/cosmos/cosmos-sdk/depinject.ModuleKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.ProvideKVStoreKey";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ProvideKVStoreKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.KVStoreKey";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KVStoreKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide";
|
||||
"github.com/cosmos/cosmos-sdk/depinject.OwnModuleKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide" -> "github.com/cosmos/cosmos-sdk/depinject_test.KeeperA";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide" -> "map[string]github.com/cosmos/cosmos-sdk/depinject_test.Handler";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide" -> "[]github.com/cosmos/cosmos-sdk/depinject_test.Command";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KVStoreKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.MsgClientA" -> "github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide" -> "github.com/cosmos/cosmos-sdk/depinject_test.KeeperB";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide" -> "[]github.com/cosmos/cosmos-sdk/depinject_test.Command";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide" -> "map[string]github.com/cosmos/cosmos-sdk/depinject_test.Handler";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KeeperB" -> "github.com/cosmos/cosmos-sdk/depinject_test.TestGraphAndLogOutput";
|
||||
"[]cosmossdk.io/depinject_test.Command"[color="lightgrey", comment="many-per-container", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"cosmossdk.io/depinject.ModuleKey"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"cosmossdk.io/depinject.OwnModuleKey"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"cosmossdk.io/depinject_test.KVStoreKey"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"cosmossdk.io/depinject_test.KeeperA"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"cosmossdk.io/depinject_test.KeeperB"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"cosmossdk.io/depinject_test.MsgClientA"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"cosmossdk.io/depinject_test.ProvideMsgClientA"[color="black", fontcolor="black", penwidth="1.5", shape="box"];
|
||||
"cosmossdk.io/depinject_test.TestGraphAndLogOutput"[color="black", fontcolor="black", penwidth="1.5", shape="hexagon"];
|
||||
"map[string]cosmossdk.io/depinject_test.Handler"[color="lightgrey", comment="one-per-module", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"cosmossdk.io/depinject.ModuleKey" -> "cosmossdk.io/depinject_test.ProvideMsgClientA";
|
||||
"cosmossdk.io/depinject_test.ProvideMsgClientA" -> "cosmossdk.io/depinject_test.MsgClientA";
|
||||
"cosmossdk.io/depinject.ModuleKey" -> "cosmossdk.io/depinject_test.ProvideKVStoreKey";
|
||||
"cosmossdk.io/depinject_test.ProvideKVStoreKey" -> "cosmossdk.io/depinject_test.KVStoreKey";
|
||||
"cosmossdk.io/depinject_test.KVStoreKey" -> "cosmossdk.io/depinject_test.ModuleA.Provide";
|
||||
"cosmossdk.io/depinject.OwnModuleKey" -> "cosmossdk.io/depinject_test.ModuleA.Provide";
|
||||
"cosmossdk.io/depinject_test.ModuleA.Provide" -> "cosmossdk.io/depinject_test.KeeperA";
|
||||
"cosmossdk.io/depinject_test.ModuleA.Provide" -> "map[string]cosmossdk.io/depinject_test.Handler";
|
||||
"cosmossdk.io/depinject_test.ModuleA.Provide" -> "[]cosmossdk.io/depinject_test.Command";
|
||||
"cosmossdk.io/depinject_test.KVStoreKey" -> "cosmossdk.io/depinject_test.ModuleB.Provide";
|
||||
"cosmossdk.io/depinject_test.MsgClientA" -> "cosmossdk.io/depinject_test.ModuleB.Provide";
|
||||
"cosmossdk.io/depinject_test.ModuleB.Provide" -> "cosmossdk.io/depinject_test.KeeperB";
|
||||
"cosmossdk.io/depinject_test.ModuleB.Provide" -> "[]cosmossdk.io/depinject_test.Command";
|
||||
"cosmossdk.io/depinject_test.ModuleB.Provide" -> "map[string]cosmossdk.io/depinject_test.Handler";
|
||||
"cosmossdk.io/depinject_test.KeeperB" -> "cosmossdk.io/depinject_test.TestGraphAndLogOutput";
|
||||
}
|
||||
|
||||
|
||||
254
depinject/testdata/example.svg
vendored
254
depinject/testdata/example.svg
vendored
@ -1,197 +1,191 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.40.1 (20161225.0304)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1992pt" height="406pt"
|
||||
viewBox="0.00 0.00 1992.49 406.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 402)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-402 1988.4891,-402 1988.4891,4 -4,4"/>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><!-- Generated by graphviz version 2.40.1 (20161225.0304)
|
||||
--><!-- Pages: 1 --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1523pt" height="409pt" viewBox="0.00 0.00 1523.08 408.80">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 404.8)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-404.8 1519.0786,-404.8 1519.0786,4 -4,4"/>
|
||||
<g id="clust1" class="cluster">
|
||||
<title>cluster_a</title>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M489.7809,-136C489.7809,-136 863.7809,-136 863.7809,-136 869.7809,-136 875.7809,-142 875.7809,-148 875.7809,-148 875.7809,-197 875.7809,-197 875.7809,-203 869.7809,-209 863.7809,-209 863.7809,-209 489.7809,-209 489.7809,-209 483.7809,-209 477.7809,-203 477.7809,-197 477.7809,-197 477.7809,-148 477.7809,-148 477.7809,-142 483.7809,-136 489.7809,-136"/>
|
||||
<text text-anchor="middle" x="676.7809" y="-195.4" font-family="Times,serif" font-size="12.00" fill="#000000">Module: a</text>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M365.9211,-136C365.9211,-136 635.9211,-136 635.9211,-136 641.9211,-136 647.9211,-142 647.9211,-148 647.9211,-148 647.9211,-198.4 647.9211,-198.4 647.9211,-204.4 641.9211,-210.4 635.9211,-210.4 635.9211,-210.4 365.9211,-210.4 365.9211,-210.4 359.9211,-210.4 353.9211,-204.4 353.9211,-198.4 353.9211,-198.4 353.9211,-148 353.9211,-148 353.9211,-142 359.9211,-136 365.9211,-136"/>
|
||||
<text text-anchor="middle" x="500.9211" y="-195.6" font-family="Times,serif" font-size="12.00" fill="#000000">Module: a</text>
|
||||
</g>
|
||||
<g id="clust2" class="cluster">
|
||||
<title>cluster_b</title>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M989.7809,-136C989.7809,-136 1363.7809,-136 1363.7809,-136 1369.7809,-136 1375.7809,-142 1375.7809,-148 1375.7809,-148 1375.7809,-197 1375.7809,-197 1375.7809,-203 1369.7809,-209 1363.7809,-209 1363.7809,-209 989.7809,-209 989.7809,-209 983.7809,-209 977.7809,-203 977.7809,-197 977.7809,-197 977.7809,-148 977.7809,-148 977.7809,-142 983.7809,-136 989.7809,-136"/>
|
||||
<text text-anchor="middle" x="1176.7809" y="-195.4" font-family="Times,serif" font-size="12.00" fill="#000000">Module: b</text>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M751.9211,-136C751.9211,-136 1019.9211,-136 1019.9211,-136 1025.9211,-136 1031.9211,-142 1031.9211,-148 1031.9211,-148 1031.9211,-198.4 1031.9211,-198.4 1031.9211,-204.4 1025.9211,-210.4 1019.9211,-210.4 1019.9211,-210.4 751.9211,-210.4 751.9211,-210.4 745.9211,-210.4 739.9211,-204.4 739.9211,-198.4 739.9211,-198.4 739.9211,-148 739.9211,-148 739.9211,-142 745.9211,-136 751.9211,-136"/>
|
||||
<text text-anchor="middle" x="885.9211" y="-195.6" font-family="Times,serif" font-size="12.00" fill="#000000">Module: b</text>
|
||||
</g>
|
||||
<g id="clust3" class="cluster">
|
||||
<title>cluster_runtime</title>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M747.7809,-281C747.7809,-281 1137.7809,-281 1137.7809,-281 1143.7809,-281 1149.7809,-287 1149.7809,-293 1149.7809,-293 1149.7809,-342 1149.7809,-342 1149.7809,-348 1143.7809,-354 1137.7809,-354 1137.7809,-354 747.7809,-354 747.7809,-354 741.7809,-354 735.7809,-348 735.7809,-342 735.7809,-342 735.7809,-293 735.7809,-293 735.7809,-287 741.7809,-281 747.7809,-281"/>
|
||||
<text text-anchor="middle" x="942.7809" y="-340.4" font-family="Times,serif" font-size="12.00" fill="#000000">Module: runtime</text>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M561.9211,-282.4C561.9211,-282.4 847.9211,-282.4 847.9211,-282.4 853.9211,-282.4 859.9211,-288.4 859.9211,-294.4 859.9211,-294.4 859.9211,-344.8 859.9211,-344.8 859.9211,-350.8 853.9211,-356.8 847.9211,-356.8 847.9211,-356.8 561.9211,-356.8 561.9211,-356.8 555.9211,-356.8 549.9211,-350.8 549.9211,-344.8 549.9211,-344.8 549.9211,-294.4 549.9211,-294.4 549.9211,-288.4 555.9211,-282.4 561.9211,-282.4"/>
|
||||
<text text-anchor="middle" x="704.9211" y="-342" font-family="Times,serif" font-size="12.00" fill="#000000">Module: runtime</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleA.Provide -->
|
||||
<g id="node1" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide</title>
|
||||
<polygon fill="none" stroke="#d3d3d3" stroke-width=".5" points="867.7809,-180 485.7809,-180 485.7809,-144 867.7809,-144 867.7809,-180"/>
|
||||
<text text-anchor="middle" x="676.7809" y="-158.3" font-family="Times,serif" font-size="14.00" fill="#696969">github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide</text>
|
||||
<title>cosmossdk.io/depinject_test.ModuleA.Provide</title>
|
||||
<polygon fill="none" stroke="#d3d3d3" stroke-width=".5" points="639.6023,-180 362.2399,-180 362.2399,-144 639.6023,-144 639.6023,-180"/>
|
||||
<text text-anchor="middle" x="500.9211" y="-157.8" font-family="Times,serif" font-size="14.00" fill="#696969">cosmossdk.io/depinject_test.ModuleA.Provide</text>
|
||||
</g>
|
||||
<!-- []github.com/cosmos/cosmos-sdk/container_test.Command -->
|
||||
<!-- auto-group -->
|
||||
<!-- []cosmossdk.io/depinject_test.Command -->
|
||||
<!-- many-per-container -->
|
||||
<g id="node4" class="node">
|
||||
<title>[]github.com/cosmos/cosmos-sdk/container_test.Command</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="676.7809" cy="-90" rx="226.6599" ry="18"/>
|
||||
<text text-anchor="middle" x="676.7809" y="-86.3" font-family="Times,serif" font-size="14.00" fill="#696969">[]github.com/cosmos/cosmos-sdk/container_test.Command</text>
|
||||
<title>[]cosmossdk.io/depinject_test.Command</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="500.9211" cy="-90" rx="168.9827" ry="18"/>
|
||||
<text text-anchor="middle" x="500.9211" y="-85.8" font-family="Times,serif" font-size="14.00" fill="#696969">[]cosmossdk.io/depinject_test.Command</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->[]github.com/cosmos/cosmos-sdk/container_test.Command -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleA.Provide->[]cosmossdk.io/depinject_test.Command -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->[]github.com/cosmos/cosmos-sdk/container_test.Command</title>
|
||||
<path fill="none" stroke="#000000" d="M676.7809,-143.8314C676.7809,-136.131 676.7809,-126.9743 676.7809,-118.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="680.281,-118.4132 676.7809,-108.4133 673.281,-118.4133 680.281,-118.4132"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleA.Provide->[]cosmossdk.io/depinject_test.Command</title>
|
||||
<path fill="none" stroke="#000000" d="M500.9211,-143.8314C500.9211,-136.131 500.9211,-126.9743 500.9211,-118.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="504.4212,-118.4132 500.9211,-108.4133 497.4212,-118.4133 504.4212,-118.4132"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KeeperA -->
|
||||
<!-- cosmossdk.io/depinject_test.KeeperA -->
|
||||
<g id="node8" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KeeperA</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="215.7809" cy="-90" rx="215.5619" ry="18"/>
|
||||
<text text-anchor="middle" x="215.7809" y="-86.3" font-family="Times,serif" font-size="14.00" fill="#696969">github.com/cosmos/cosmos-sdk/container_test.KeeperA</text>
|
||||
<title>cosmossdk.io/depinject_test.KeeperA</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="156.9211" cy="-90" rx="156.8422" ry="18"/>
|
||||
<text text-anchor="middle" x="156.9211" y="-85.8" font-family="Times,serif" font-size="14.00" fill="#696969">cosmossdk.io/depinject_test.KeeperA</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->github.com/cosmos/cosmos-sdk/container_test.KeeperA -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleA.Provide->cosmossdk.io/depinject_test.KeeperA -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->github.com/cosmos/cosmos-sdk/container_test.KeeperA</title>
|
||||
<path fill="none" stroke="#000000" d="M561.3433,-143.9707C489.9131,-132.8146 398.6553,-118.5617 327.8594,-107.5047"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="327.9877,-103.9824 317.5674,-105.8972 326.9075,-110.8985 327.9877,-103.9824"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleA.Provide->cosmossdk.io/depinject_test.KeeperA</title>
|
||||
<path fill="none" stroke="#000000" d="M414.5594,-143.9243C361.9267,-132.9082 294.9303,-118.8857 242.4501,-107.9014"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="242.9968,-104.4401 232.4919,-105.8171 241.5627,-111.2916 242.9968,-104.4401"/>
|
||||
</g>
|
||||
<!-- map[string]github.com/cosmos/cosmos-sdk/container_test.Handler -->
|
||||
<!-- map[string]cosmossdk.io/depinject_test.Handler -->
|
||||
<!-- one-per-module -->
|
||||
<g id="node13" class="node">
|
||||
<title>map[string]github.com/cosmos/cosmos-sdk/container_test.Handler</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="1176.7809" cy="-90" rx="254.555" ry="18"/>
|
||||
<text text-anchor="middle" x="1176.7809" y="-86.3" font-family="Times,serif" font-size="14.00" fill="#696969">map[string]github.com/cosmos/cosmos-sdk/container_test.Handler</text>
|
||||
<title>map[string]cosmossdk.io/depinject_test.Handler</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="885.9211" cy="-90" rx="198.4537" ry="18"/>
|
||||
<text text-anchor="middle" x="885.9211" y="-85.8" font-family="Times,serif" font-size="14.00" fill="#696969">map[string]cosmossdk.io/depinject_test.Handler</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->map[string]github.com/cosmos/cosmos-sdk/container_test.Handler -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleA.Provide->map[string]cosmossdk.io/depinject_test.Handler -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->map[string]github.com/cosmos/cosmos-sdk/container_test.Handler</title>
|
||||
<path fill="none" stroke="#000000" d="M801.9843,-143.9707C879.0828,-132.8685 977.4789,-118.6995 1054.1053,-107.6653"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1054.8918,-111.0882 1064.2909,-106.1986 1053.8941,-104.1597 1054.8918,-111.0882"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleA.Provide->map[string]cosmossdk.io/depinject_test.Handler</title>
|
||||
<path fill="none" stroke="#000000" d="M597.5759,-143.9243C656.1121,-132.9773 730.5228,-119.0615 789.0907,-108.1085"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="789.904,-111.5172 799.0902,-106.2385 788.6172,-104.6365 789.904,-111.5172"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleB.Provide -->
|
||||
<g id="node2" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide</title>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.5" points="1367.7809,-180 985.7809,-180 985.7809,-144 1367.7809,-144 1367.7809,-180"/>
|
||||
<text text-anchor="middle" x="1176.7809" y="-158.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide</text>
|
||||
<title>cosmossdk.io/depinject_test.ModuleB.Provide</title>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.5" points="1024.3321,-180 747.5101,-180 747.5101,-144 1024.3321,-144 1024.3321,-180"/>
|
||||
<text text-anchor="middle" x="885.9211" y="-157.8" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject_test.ModuleB.Provide</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->[]github.com/cosmos/cosmos-sdk/container_test.Command -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleB.Provide->[]cosmossdk.io/depinject_test.Command -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->[]github.com/cosmos/cosmos-sdk/container_test.Command</title>
|
||||
<path fill="none" stroke="#000000" d="M1051.5774,-143.9707C973.51,-132.729 873.6063,-118.3429 796.5778,-107.2508"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="796.7417,-103.7383 786.345,-105.7772 795.744,-110.6669 796.7417,-103.7383"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleB.Provide->[]cosmossdk.io/depinject_test.Command</title>
|
||||
<path fill="none" stroke="#000000" d="M789.2663,-143.9243C729.6773,-132.7804 653.6375,-118.56 594.6069,-107.5205"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="595.0121,-104.0356 584.5391,-105.6377 593.7253,-110.9164 595.0121,-104.0356"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KeeperB -->
|
||||
<!-- cosmossdk.io/depinject_test.KeeperB -->
|
||||
<g id="node9" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KeeperB</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="1664.7809" cy="-90" rx="215.2619" ry="18"/>
|
||||
<text text-anchor="middle" x="1664.7809" y="-86.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container_test.KeeperB</text>
|
||||
<title>cosmossdk.io/depinject_test.KeeperB</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="1258.9211" cy="-90" rx="156.28" ry="18"/>
|
||||
<text text-anchor="middle" x="1258.9211" y="-85.8" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject_test.KeeperB</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->github.com/cosmos/cosmos-sdk/container_test.KeeperB -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleB.Provide->cosmossdk.io/depinject_test.KeeperB -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->github.com/cosmos/cosmos-sdk/container_test.KeeperB</title>
|
||||
<path fill="none" stroke="#000000" d="M1298.9794,-143.9707C1375.4434,-132.6891 1473.371,-118.2408 1548.6579,-107.1329"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1549.2757,-110.5797 1558.6577,-105.6575 1548.2539,-103.6547 1549.2757,-110.5797"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleB.Provide->cosmossdk.io/depinject_test.KeeperB</title>
|
||||
<path fill="none" stroke="#000000" d="M979.5633,-143.9243C1037.3792,-132.7641 1111.1798,-118.5184 1168.4058,-107.4721"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1169.3719,-110.8503 1178.5273,-105.5184 1168.0451,-103.9772 1169.3719,-110.8503"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->map[string]github.com/cosmos/cosmos-sdk/container_test.Handler -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleB.Provide->map[string]cosmossdk.io/depinject_test.Handler -->
|
||||
<g id="edge14" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->map[string]github.com/cosmos/cosmos-sdk/container_test.Handler</title>
|
||||
<path fill="none" stroke="#000000" d="M1176.7809,-143.8314C1176.7809,-136.131 1176.7809,-126.9743 1176.7809,-118.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1180.281,-118.4132 1176.7809,-108.4133 1173.281,-118.4133 1180.281,-118.4132"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleB.Provide->map[string]cosmossdk.io/depinject_test.Handler</title>
|
||||
<path fill="none" stroke="#000000" d="M885.9211,-143.8314C885.9211,-136.131 885.9211,-126.9743 885.9211,-118.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="889.4212,-118.4132 885.9211,-108.4133 882.4212,-118.4133 889.4212,-118.4132"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey -->
|
||||
<!-- cosmossdk.io/depinject_test.ProvideKVStoreKey -->
|
||||
<g id="node3" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey</title>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.5" points="1141.7809,-325 743.7809,-325 743.7809,-289 1141.7809,-289 1141.7809,-325"/>
|
||||
<text text-anchor="middle" x="942.7809" y="-303.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey</text>
|
||||
<title>cosmossdk.io/depinject_test.ProvideKVStoreKey</title>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.5" points="851.5287,-326.4 558.3134,-326.4 558.3134,-290.4 851.5287,-290.4 851.5287,-326.4"/>
|
||||
<text text-anchor="middle" x="704.9211" y="-304.2" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject_test.ProvideKVStoreKey</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KVStoreKey -->
|
||||
<!-- cosmossdk.io/depinject_test.KVStoreKey -->
|
||||
<g id="node7" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KVStoreKey</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="926.7809" cy="-235" rx="230.9593" ry="18"/>
|
||||
<text text-anchor="middle" x="926.7809" y="-231.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container_test.KVStoreKey</text>
|
||||
<title>cosmossdk.io/depinject_test.KVStoreKey</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="692.9211" cy="-236.4" rx="172.4723" ry="18"/>
|
||||
<text text-anchor="middle" x="692.9211" y="-232.2" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject_test.KVStoreKey</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey->github.com/cosmos/cosmos-sdk/container_test.KVStoreKey -->
|
||||
<!-- cosmossdk.io/depinject_test.ProvideKVStoreKey->cosmossdk.io/depinject_test.KVStoreKey -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey->github.com/cosmos/cosmos-sdk/container_test.KVStoreKey</title>
|
||||
<path fill="none" stroke="#000000" d="M938.7434,-288.8314C937.0322,-281.131 934.9974,-271.9743 933.0957,-263.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="936.4587,-262.4159 930.8727,-253.4133 929.6254,-263.9344 936.4587,-262.4159"/>
|
||||
<title>cosmossdk.io/depinject_test.ProvideKVStoreKey->cosmossdk.io/depinject_test.KVStoreKey</title>
|
||||
<path fill="none" stroke="#000000" d="M701.893,-290.2314C700.6096,-282.531 699.0835,-273.3743 697.6572,-264.8166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="701.0864,-264.1018 695.99,-254.8133 694.1816,-265.2526 701.0864,-264.1018"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container.ModuleKey -->
|
||||
<!-- cosmossdk.io/depinject.ModuleKey -->
|
||||
<g id="node5" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container.ModuleKey</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="1164.7809" cy="-380" rx="209.0631" ry="18"/>
|
||||
<text text-anchor="middle" x="1164.7809" y="-376.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container.ModuleKey</text>
|
||||
<title>cosmossdk.io/depinject.ModuleKey</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="871.9211" cy="-382.8" rx="149.9265" ry="18"/>
|
||||
<text text-anchor="middle" x="871.9211" y="-378.6" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject.ModuleKey</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container.ModuleKey->github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey -->
|
||||
<!-- cosmossdk.io/depinject.ModuleKey->cosmossdk.io/depinject_test.ProvideKVStoreKey -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container.ModuleKey->github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey</title>
|
||||
<path fill="none" stroke="#000000" d="M1111.6063,-362.5147C1080.3173,-352.2259 1040.5233,-339.1405 1007.4297,-328.2584"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1008.4329,-324.904 997.8399,-325.105 1006.2462,-331.5537 1008.4329,-324.904"/>
|
||||
<title>cosmossdk.io/depinject.ModuleKey->cosmossdk.io/depinject_test.ProvideKVStoreKey</title>
|
||||
<path fill="none" stroke="#000000" d="M832.767,-365.3565C809.5149,-354.9975 779.7997,-341.7591 754.8703,-330.6528"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="756.1325,-327.3836 745.5737,-326.5111 753.2838,-333.7777 756.1325,-327.3836"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ProvideMsgClientA -->
|
||||
<!-- cosmossdk.io/depinject_test.ProvideMsgClientA -->
|
||||
<g id="node11" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ProvideMsgClientA</title>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.5" points="1584.7809,-325 1190.7809,-325 1190.7809,-289 1584.7809,-289 1584.7809,-325"/>
|
||||
<text text-anchor="middle" x="1387.7809" y="-303.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container_test.ProvideMsgClientA</text>
|
||||
<title>cosmossdk.io/depinject_test.ProvideMsgClientA</title>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.5" points="1184.6646,-326.4 895.1776,-326.4 895.1776,-290.4 1184.6646,-290.4 1184.6646,-326.4"/>
|
||||
<text text-anchor="middle" x="1039.9211" y="-304.2" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject_test.ProvideMsgClientA</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container.ModuleKey->github.com/cosmos/cosmos-sdk/container_test.ProvideMsgClientA -->
|
||||
<!-- cosmossdk.io/depinject.ModuleKey->cosmossdk.io/depinject_test.ProvideMsgClientA -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container.ModuleKey->github.com/cosmos/cosmos-sdk/container_test.ProvideMsgClientA</title>
|
||||
<path fill="none" stroke="#000000" d="M1218.1949,-362.5147C1249.6249,-352.2259 1289.5981,-339.1405 1322.8408,-328.2584"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1324.0589,-331.5425 1332.4738,-325.105 1321.8811,-324.8899 1324.0589,-331.5425"/>
|
||||
<title>cosmossdk.io/depinject.ModuleKey->cosmossdk.io/depinject_test.ProvideMsgClientA</title>
|
||||
<path fill="none" stroke="#000000" d="M911.3096,-365.3565C934.7009,-354.9975 964.5941,-341.7591 989.6727,-330.6528"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="991.2988,-333.7606 999.0251,-326.5111 988.4643,-327.3602 991.2988,-333.7606"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container.OwnModuleKey -->
|
||||
<!-- cosmossdk.io/depinject.OwnModuleKey -->
|
||||
<g id="node6" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container.OwnModuleKey</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="450.7809" cy="-235" rx="226.6599" ry="18"/>
|
||||
<text text-anchor="middle" x="450.7809" y="-231.3" font-family="Times,serif" font-size="14.00" fill="#696969">github.com/cosmos/cosmos-sdk/container.OwnModuleKey</text>
|
||||
<title>cosmossdk.io/depinject.OwnModuleKey</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="333.9211" cy="-236.4" rx="168.9692" ry="18"/>
|
||||
<text text-anchor="middle" x="333.9211" y="-232.2" font-family="Times,serif" font-size="14.00" fill="#696969">cosmossdk.io/depinject.OwnModuleKey</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container.OwnModuleKey->github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide -->
|
||||
<!-- cosmossdk.io/depinject.OwnModuleKey->cosmossdk.io/depinject_test.ModuleA.Provide -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container.OwnModuleKey->github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M504.9135,-217.5147C536.7663,-207.2259 577.2772,-194.1405 610.9672,-183.2584"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="612.2896,-186.5094 620.7297,-180.105 610.138,-179.8482 612.2896,-186.5094"/>
|
||||
<title>cosmossdk.io/depinject.OwnModuleKey->cosmossdk.io/depinject_test.ModuleA.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M373.4977,-218.7682C396.7611,-208.4042 426.3832,-195.2073 451.2109,-184.1463"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="452.7582,-187.2887 460.4684,-180.022 449.9095,-180.8945 452.7582,-187.2887"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KVStoreKey->github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide -->
|
||||
<!-- cosmossdk.io/depinject_test.KVStoreKey->cosmossdk.io/depinject_test.ModuleA.Provide -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KVStoreKey->github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M867.2172,-217.6074C831.5542,-207.1938 785.9946,-193.8904 748.3799,-182.9069"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="749.0792,-179.465 738.499,-180.0217 747.1171,-186.1844 749.0792,-179.465"/>
|
||||
<title>cosmossdk.io/depinject_test.KVStoreKey->cosmossdk.io/depinject_test.ModuleA.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M647.9056,-218.9565C620.8194,-208.4606 586.1048,-195.0087 557.2143,-183.8136"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="558.2484,-180.4608 547.6594,-180.1111 555.7191,-186.9879 558.2484,-180.4608"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KVStoreKey->github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide -->
|
||||
<!-- cosmossdk.io/depinject_test.KVStoreKey->cosmossdk.io/depinject_test.ModuleB.Provide -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KVStoreKey->github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M986.3445,-217.6074C1022.0075,-207.1938 1067.5671,-193.8904 1105.1818,-182.9069"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1106.4446,-186.1844 1115.0627,-180.0217 1104.4825,-179.465 1106.4446,-186.1844"/>
|
||||
<title>cosmossdk.io/depinject_test.KVStoreKey->cosmossdk.io/depinject_test.ModuleB.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M738.171,-218.9565C765.3983,-208.4606 800.2937,-195.0087 829.3346,-183.8136"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="830.8676,-186.9738 838.9393,-180.1111 828.3497,-180.4423 830.8676,-186.9738"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.TestGraphAndLogOutput -->
|
||||
<!-- cosmossdk.io/depinject_test.TestGraphAndLogOutput -->
|
||||
<g id="node12" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.TestGraphAndLogOutput</title>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.5" points="1984.6974,-18 1824.7391,-36 1504.8226,-36 1344.8643,-18 1504.8226,0 1824.7391,0 1984.6974,-18"/>
|
||||
<text text-anchor="middle" x="1664.7809" y="-14.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container_test.TestGraphAndLogOutput</text>
|
||||
<title>cosmossdk.io/depinject_test.TestGraphAndLogOutput</title>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.5" points="1515.2362,-18 1387.0786,-36 1130.7635,-36 1002.6059,-18 1130.7635,0 1387.0786,0 1515.2362,-18"/>
|
||||
<text text-anchor="middle" x="1258.9211" y="-13.8" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject_test.TestGraphAndLogOutput</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KeeperB->github.com/cosmos/cosmos-sdk/container_test.TestGraphAndLogOutput -->
|
||||
<!-- cosmossdk.io/depinject_test.KeeperB->cosmossdk.io/depinject_test.TestGraphAndLogOutput -->
|
||||
<g id="edge15" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KeeperB->github.com/cosmos/cosmos-sdk/container_test.TestGraphAndLogOutput</title>
|
||||
<path fill="none" stroke="#000000" d="M1664.7809,-71.8314C1664.7809,-64.131 1664.7809,-54.9743 1664.7809,-46.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1668.281,-46.4132 1664.7809,-36.4133 1661.281,-46.4133 1668.281,-46.4132"/>
|
||||
<title>cosmossdk.io/depinject_test.KeeperB->cosmossdk.io/depinject_test.TestGraphAndLogOutput</title>
|
||||
<path fill="none" stroke="#000000" d="M1258.9211,-71.8314C1258.9211,-64.131 1258.9211,-54.9743 1258.9211,-46.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1262.4212,-46.4132 1258.9211,-36.4133 1255.4212,-46.4133 1262.4212,-46.4132"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.MsgClientA -->
|
||||
<!-- cosmossdk.io/depinject_test.MsgClientA -->
|
||||
<g id="node10" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.MsgClientA</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="1403.7809" cy="-235" rx="228.2596" ry="18"/>
|
||||
<text text-anchor="middle" x="1403.7809" y="-231.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container_test.MsgClientA</text>
|
||||
<title>cosmossdk.io/depinject_test.MsgClientA</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="1052.9211" cy="-236.4" rx="169.6418" ry="18"/>
|
||||
<text text-anchor="middle" x="1052.9211" y="-232.2" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject_test.MsgClientA</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.MsgClientA->github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide -->
|
||||
<!-- cosmossdk.io/depinject_test.MsgClientA->cosmossdk.io/depinject_test.ModuleB.Provide -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.MsgClientA->github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M1349.4087,-217.5147C1317.4149,-207.2259 1276.7248,-194.1405 1242.8858,-183.2584"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1243.6714,-179.8346 1233.08,-180.105 1241.5283,-186.4985 1243.6714,-179.8346"/>
|
||||
<title>cosmossdk.io/depinject_test.MsgClientA->cosmossdk.io/depinject_test.ModuleB.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M1013.3444,-218.7682C990.081,-208.4042 960.4589,-195.2073 935.6312,-184.1463"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="936.9326,-180.8945 926.3737,-180.022 934.0839,-187.2887 936.9326,-180.8945"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ProvideMsgClientA->github.com/cosmos/cosmos-sdk/container_test.MsgClientA -->
|
||||
<!-- cosmossdk.io/depinject_test.ProvideMsgClientA->cosmossdk.io/depinject_test.MsgClientA -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ProvideMsgClientA->github.com/cosmos/cosmos-sdk/container_test.MsgClientA</title>
|
||||
<path fill="none" stroke="#000000" d="M1391.8183,-288.8314C1393.5295,-281.131 1395.5643,-271.9743 1397.466,-263.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1400.9363,-263.9344 1399.689,-253.4133 1394.103,-262.4159 1400.9363,-263.9344"/>
|
||||
<title>cosmossdk.io/depinject_test.ProvideMsgClientA->cosmossdk.io/depinject_test.MsgClientA</title>
|
||||
<path fill="none" stroke="#000000" d="M1043.2015,-290.2314C1044.5919,-282.531 1046.2451,-273.3743 1047.7903,-264.8166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1051.2639,-265.2761 1049.5965,-254.8133 1044.3752,-264.0322 1051.2639,-265.2761"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 15 KiB |
50
depinject/testdata/example_error.dot
vendored
50
depinject/testdata/example_error.dot
vendored
@ -1,40 +1,40 @@
|
||||
digraph "" {
|
||||
subgraph "cluster_a" {
|
||||
graph [fontsize="12.0", label="Module: a", penwidth="0.5", style="rounded"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5", shape="box"];
|
||||
"cosmossdk.io/depinject_test.ModuleA.Provide"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5", shape="box"];
|
||||
}
|
||||
|
||||
subgraph "cluster_b" {
|
||||
graph [fontsize="12.0", label="Module: b", penwidth="0.5", style="rounded"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide"[color="red", fontcolor="red", penwidth="0.5", shape="box"];
|
||||
"cosmossdk.io/depinject_test.ModuleB.Provide"[color="red", fontcolor="red", penwidth="0.5", shape="box"];
|
||||
}
|
||||
|
||||
subgraph "cluster_runtime" {
|
||||
graph [fontsize="12.0", label="Module: runtime", penwidth="0.5", style="rounded"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ProvideKVStoreKey"[color="black", fontcolor="black", penwidth="1.5", shape="box"];
|
||||
"cosmossdk.io/depinject_test.ProvideKVStoreKey"[color="black", fontcolor="black", penwidth="1.5", shape="box"];
|
||||
}
|
||||
|
||||
"[]github.com/cosmos/cosmos-sdk/depinject_test.Command"[color="lightgrey", comment="many-per-container", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject.ModuleKey"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject.OwnModuleKey"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KVStoreKey"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KeeperA"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KeeperB"[color="red", fontcolor="red", penwidth="0.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.MsgClientA"[color="red", fontcolor="red", penwidth="0.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.TestGraphAndLogOutput"[color="red", fontcolor="red", penwidth="0.5", shape="hexagon"];
|
||||
"map[string]github.com/cosmos/cosmos-sdk/depinject_test.Handler"[color="lightgrey", comment="one-per-module", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"github.com/cosmos/cosmos-sdk/depinject.ModuleKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.ProvideKVStoreKey";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ProvideKVStoreKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.KVStoreKey";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KVStoreKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide";
|
||||
"github.com/cosmos/cosmos-sdk/depinject.OwnModuleKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide" -> "github.com/cosmos/cosmos-sdk/depinject_test.KeeperA";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide" -> "map[string]github.com/cosmos/cosmos-sdk/depinject_test.Handler";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleA.Provide" -> "[]github.com/cosmos/cosmos-sdk/depinject_test.Command";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KVStoreKey" -> "github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.MsgClientA" -> "github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide" -> "github.com/cosmos/cosmos-sdk/depinject_test.KeeperB";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide" -> "[]github.com/cosmos/cosmos-sdk/depinject_test.Command";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.ModuleB.Provide" -> "map[string]github.com/cosmos/cosmos-sdk/depinject_test.Handler";
|
||||
"github.com/cosmos/cosmos-sdk/depinject_test.KeeperB" -> "github.com/cosmos/cosmos-sdk/depinject_test.TestGraphAndLogOutput";
|
||||
"[]cosmossdk.io/depinject_test.Command"[color="lightgrey", comment="many-per-container", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"cosmossdk.io/depinject.ModuleKey"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"cosmossdk.io/depinject.OwnModuleKey"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"cosmossdk.io/depinject_test.KVStoreKey"[color="black", fontcolor="black", penwidth="1.5"];
|
||||
"cosmossdk.io/depinject_test.KeeperA"[color="lightgrey", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"cosmossdk.io/depinject_test.KeeperB"[color="red", fontcolor="red", penwidth="0.5"];
|
||||
"cosmossdk.io/depinject_test.MsgClientA"[color="red", fontcolor="red", penwidth="0.5"];
|
||||
"cosmossdk.io/depinject_test.TestGraphAndLogOutput"[color="red", fontcolor="red", penwidth="0.5", shape="hexagon"];
|
||||
"map[string]cosmossdk.io/depinject_test.Handler"[color="lightgrey", comment="one-per-module", fontcolor="dimgrey", penwidth="0.5"];
|
||||
"cosmossdk.io/depinject.ModuleKey" -> "cosmossdk.io/depinject_test.ProvideKVStoreKey";
|
||||
"cosmossdk.io/depinject_test.ProvideKVStoreKey" -> "cosmossdk.io/depinject_test.KVStoreKey";
|
||||
"cosmossdk.io/depinject_test.KVStoreKey" -> "cosmossdk.io/depinject_test.ModuleA.Provide";
|
||||
"cosmossdk.io/depinject.OwnModuleKey" -> "cosmossdk.io/depinject_test.ModuleA.Provide";
|
||||
"cosmossdk.io/depinject_test.ModuleA.Provide" -> "cosmossdk.io/depinject_test.KeeperA";
|
||||
"cosmossdk.io/depinject_test.ModuleA.Provide" -> "map[string]cosmossdk.io/depinject_test.Handler";
|
||||
"cosmossdk.io/depinject_test.ModuleA.Provide" -> "[]cosmossdk.io/depinject_test.Command";
|
||||
"cosmossdk.io/depinject_test.KVStoreKey" -> "cosmossdk.io/depinject_test.ModuleB.Provide";
|
||||
"cosmossdk.io/depinject_test.MsgClientA" -> "cosmossdk.io/depinject_test.ModuleB.Provide";
|
||||
"cosmossdk.io/depinject_test.ModuleB.Provide" -> "cosmossdk.io/depinject_test.KeeperB";
|
||||
"cosmossdk.io/depinject_test.ModuleB.Provide" -> "[]cosmossdk.io/depinject_test.Command";
|
||||
"cosmossdk.io/depinject_test.ModuleB.Provide" -> "map[string]cosmossdk.io/depinject_test.Handler";
|
||||
"cosmossdk.io/depinject_test.KeeperB" -> "cosmossdk.io/depinject_test.TestGraphAndLogOutput";
|
||||
}
|
||||
|
||||
|
||||
230
depinject/testdata/example_error.svg
vendored
230
depinject/testdata/example_error.svg
vendored
@ -1,179 +1,173 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Generated by graphviz version 2.40.1 (20161225.0304)
|
||||
-->
|
||||
<!-- Pages: 1 -->
|
||||
<svg width="1992pt" height="406pt"
|
||||
viewBox="0.00 0.00 1992.49 406.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 402)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-402 1988.4891,-402 1988.4891,4 -4,4"/>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><!-- Generated by graphviz version 2.40.1 (20161225.0304)
|
||||
--><!-- Pages: 1 --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1523pt" height="409pt" viewBox="0.00 0.00 1523.08 408.80">
|
||||
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 404.8)">
|
||||
<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-404.8 1519.0786,-404.8 1519.0786,4 -4,4"/>
|
||||
<g id="clust1" class="cluster">
|
||||
<title>cluster_a</title>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M489.7809,-136C489.7809,-136 863.7809,-136 863.7809,-136 869.7809,-136 875.7809,-142 875.7809,-148 875.7809,-148 875.7809,-197 875.7809,-197 875.7809,-203 869.7809,-209 863.7809,-209 863.7809,-209 489.7809,-209 489.7809,-209 483.7809,-209 477.7809,-203 477.7809,-197 477.7809,-197 477.7809,-148 477.7809,-148 477.7809,-142 483.7809,-136 489.7809,-136"/>
|
||||
<text text-anchor="middle" x="676.7809" y="-195.4" font-family="Times,serif" font-size="12.00" fill="#000000">Module: a</text>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M365.9211,-136C365.9211,-136 635.9211,-136 635.9211,-136 641.9211,-136 647.9211,-142 647.9211,-148 647.9211,-148 647.9211,-198.4 647.9211,-198.4 647.9211,-204.4 641.9211,-210.4 635.9211,-210.4 635.9211,-210.4 365.9211,-210.4 365.9211,-210.4 359.9211,-210.4 353.9211,-204.4 353.9211,-198.4 353.9211,-198.4 353.9211,-148 353.9211,-148 353.9211,-142 359.9211,-136 365.9211,-136"/>
|
||||
<text text-anchor="middle" x="500.9211" y="-195.6" font-family="Times,serif" font-size="12.00" fill="#000000">Module: a</text>
|
||||
</g>
|
||||
<g id="clust2" class="cluster">
|
||||
<title>cluster_b</title>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M989.7809,-136C989.7809,-136 1363.7809,-136 1363.7809,-136 1369.7809,-136 1375.7809,-142 1375.7809,-148 1375.7809,-148 1375.7809,-197 1375.7809,-197 1375.7809,-203 1369.7809,-209 1363.7809,-209 1363.7809,-209 989.7809,-209 989.7809,-209 983.7809,-209 977.7809,-203 977.7809,-197 977.7809,-197 977.7809,-148 977.7809,-148 977.7809,-142 983.7809,-136 989.7809,-136"/>
|
||||
<text text-anchor="middle" x="1176.7809" y="-195.4" font-family="Times,serif" font-size="12.00" fill="#000000">Module: b</text>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M751.9211,-136C751.9211,-136 1019.9211,-136 1019.9211,-136 1025.9211,-136 1031.9211,-142 1031.9211,-148 1031.9211,-148 1031.9211,-198.4 1031.9211,-198.4 1031.9211,-204.4 1025.9211,-210.4 1019.9211,-210.4 1019.9211,-210.4 751.9211,-210.4 751.9211,-210.4 745.9211,-210.4 739.9211,-204.4 739.9211,-198.4 739.9211,-198.4 739.9211,-148 739.9211,-148 739.9211,-142 745.9211,-136 751.9211,-136"/>
|
||||
<text text-anchor="middle" x="885.9211" y="-195.6" font-family="Times,serif" font-size="12.00" fill="#000000">Module: b</text>
|
||||
</g>
|
||||
<g id="clust3" class="cluster">
|
||||
<title>cluster_runtime</title>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M731.7809,-281C731.7809,-281 1121.7809,-281 1121.7809,-281 1127.7809,-281 1133.7809,-287 1133.7809,-293 1133.7809,-293 1133.7809,-342 1133.7809,-342 1133.7809,-348 1127.7809,-354 1121.7809,-354 1121.7809,-354 731.7809,-354 731.7809,-354 725.7809,-354 719.7809,-348 719.7809,-342 719.7809,-342 719.7809,-293 719.7809,-293 719.7809,-287 725.7809,-281 731.7809,-281"/>
|
||||
<text text-anchor="middle" x="926.7809" y="-340.4" font-family="Times,serif" font-size="12.00" fill="#000000">Module: runtime</text>
|
||||
<path fill="none" stroke="#000000" stroke-width=".5" d="M549.9211,-282.4C549.9211,-282.4 835.9211,-282.4 835.9211,-282.4 841.9211,-282.4 847.9211,-288.4 847.9211,-294.4 847.9211,-294.4 847.9211,-344.8 847.9211,-344.8 847.9211,-350.8 841.9211,-356.8 835.9211,-356.8 835.9211,-356.8 549.9211,-356.8 549.9211,-356.8 543.9211,-356.8 537.9211,-350.8 537.9211,-344.8 537.9211,-344.8 537.9211,-294.4 537.9211,-294.4 537.9211,-288.4 543.9211,-282.4 549.9211,-282.4"/>
|
||||
<text text-anchor="middle" x="692.9211" y="-342" font-family="Times,serif" font-size="12.00" fill="#000000">Module: runtime</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleA.Provide -->
|
||||
<g id="node1" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide</title>
|
||||
<polygon fill="none" stroke="#d3d3d3" stroke-width=".5" points="867.7809,-180 485.7809,-180 485.7809,-144 867.7809,-144 867.7809,-180"/>
|
||||
<text text-anchor="middle" x="676.7809" y="-158.3" font-family="Times,serif" font-size="14.00" fill="#696969">github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide</text>
|
||||
<title>cosmossdk.io/depinject_test.ModuleA.Provide</title>
|
||||
<polygon fill="none" stroke="#d3d3d3" stroke-width=".5" points="639.6023,-180 362.2399,-180 362.2399,-144 639.6023,-144 639.6023,-180"/>
|
||||
<text text-anchor="middle" x="500.9211" y="-157.8" font-family="Times,serif" font-size="14.00" fill="#696969">cosmossdk.io/depinject_test.ModuleA.Provide</text>
|
||||
</g>
|
||||
<!-- []github.com/cosmos/cosmos-sdk/container_test.Command -->
|
||||
<!-- auto-group -->
|
||||
<!-- []cosmossdk.io/depinject_test.Command -->
|
||||
<!-- many-per-container -->
|
||||
<g id="node4" class="node">
|
||||
<title>[]github.com/cosmos/cosmos-sdk/container_test.Command</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="676.7809" cy="-90" rx="226.6599" ry="18"/>
|
||||
<text text-anchor="middle" x="676.7809" y="-86.3" font-family="Times,serif" font-size="14.00" fill="#696969">[]github.com/cosmos/cosmos-sdk/container_test.Command</text>
|
||||
<title>[]cosmossdk.io/depinject_test.Command</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="500.9211" cy="-90" rx="168.9827" ry="18"/>
|
||||
<text text-anchor="middle" x="500.9211" y="-85.8" font-family="Times,serif" font-size="14.00" fill="#696969">[]cosmossdk.io/depinject_test.Command</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->[]github.com/cosmos/cosmos-sdk/container_test.Command -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleA.Provide->[]cosmossdk.io/depinject_test.Command -->
|
||||
<g id="edge7" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->[]github.com/cosmos/cosmos-sdk/container_test.Command</title>
|
||||
<path fill="none" stroke="#000000" d="M676.7809,-143.8314C676.7809,-136.131 676.7809,-126.9743 676.7809,-118.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="680.281,-118.4132 676.7809,-108.4133 673.281,-118.4133 680.281,-118.4132"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleA.Provide->[]cosmossdk.io/depinject_test.Command</title>
|
||||
<path fill="none" stroke="#000000" d="M500.9211,-143.8314C500.9211,-136.131 500.9211,-126.9743 500.9211,-118.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="504.4212,-118.4132 500.9211,-108.4133 497.4212,-118.4133 504.4212,-118.4132"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KeeperA -->
|
||||
<!-- cosmossdk.io/depinject_test.KeeperA -->
|
||||
<g id="node8" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KeeperA</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="215.7809" cy="-90" rx="215.5619" ry="18"/>
|
||||
<text text-anchor="middle" x="215.7809" y="-86.3" font-family="Times,serif" font-size="14.00" fill="#696969">github.com/cosmos/cosmos-sdk/container_test.KeeperA</text>
|
||||
<title>cosmossdk.io/depinject_test.KeeperA</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="156.9211" cy="-90" rx="156.8422" ry="18"/>
|
||||
<text text-anchor="middle" x="156.9211" y="-85.8" font-family="Times,serif" font-size="14.00" fill="#696969">cosmossdk.io/depinject_test.KeeperA</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->github.com/cosmos/cosmos-sdk/container_test.KeeperA -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleA.Provide->cosmossdk.io/depinject_test.KeeperA -->
|
||||
<g id="edge5" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->github.com/cosmos/cosmos-sdk/container_test.KeeperA</title>
|
||||
<path fill="none" stroke="#000000" d="M561.3433,-143.9707C489.9131,-132.8146 398.6553,-118.5617 327.8594,-107.5047"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="327.9877,-103.9824 317.5674,-105.8972 326.9075,-110.8985 327.9877,-103.9824"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleA.Provide->cosmossdk.io/depinject_test.KeeperA</title>
|
||||
<path fill="none" stroke="#000000" d="M414.5594,-143.9243C361.9267,-132.9082 294.9303,-118.8857 242.4501,-107.9014"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="242.9968,-104.4401 232.4919,-105.8171 241.5627,-111.2916 242.9968,-104.4401"/>
|
||||
</g>
|
||||
<!-- map[string]github.com/cosmos/cosmos-sdk/container_test.Handler -->
|
||||
<!-- map[string]cosmossdk.io/depinject_test.Handler -->
|
||||
<!-- one-per-module -->
|
||||
<g id="node12" class="node">
|
||||
<title>map[string]github.com/cosmos/cosmos-sdk/container_test.Handler</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="1176.7809" cy="-90" rx="254.555" ry="18"/>
|
||||
<text text-anchor="middle" x="1176.7809" y="-86.3" font-family="Times,serif" font-size="14.00" fill="#696969">map[string]github.com/cosmos/cosmos-sdk/container_test.Handler</text>
|
||||
<title>map[string]cosmossdk.io/depinject_test.Handler</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="885.9211" cy="-90" rx="198.4537" ry="18"/>
|
||||
<text text-anchor="middle" x="885.9211" y="-85.8" font-family="Times,serif" font-size="14.00" fill="#696969">map[string]cosmossdk.io/depinject_test.Handler</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->map[string]github.com/cosmos/cosmos-sdk/container_test.Handler -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleA.Provide->map[string]cosmossdk.io/depinject_test.Handler -->
|
||||
<g id="edge6" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide->map[string]github.com/cosmos/cosmos-sdk/container_test.Handler</title>
|
||||
<path fill="none" stroke="#000000" d="M801.9843,-143.9707C879.0828,-132.8685 977.4789,-118.6995 1054.1053,-107.6653"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1054.8918,-111.0882 1064.2909,-106.1986 1053.8941,-104.1597 1054.8918,-111.0882"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleA.Provide->map[string]cosmossdk.io/depinject_test.Handler</title>
|
||||
<path fill="none" stroke="#000000" d="M597.5759,-143.9243C656.1121,-132.9773 730.5228,-119.0615 789.0907,-108.1085"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="789.904,-111.5172 799.0902,-106.2385 788.6172,-104.6365 789.904,-111.5172"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleB.Provide -->
|
||||
<g id="node2" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide</title>
|
||||
<polygon fill="none" stroke="#ff0000" stroke-width=".5" points="1367.7809,-180 985.7809,-180 985.7809,-144 1367.7809,-144 1367.7809,-180"/>
|
||||
<text text-anchor="middle" x="1176.7809" y="-158.3" font-family="Times,serif" font-size="14.00" fill="#ff0000">github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide</text>
|
||||
<title>cosmossdk.io/depinject_test.ModuleB.Provide</title>
|
||||
<polygon fill="none" stroke="#ff0000" stroke-width=".5" points="1024.3321,-180 747.5101,-180 747.5101,-144 1024.3321,-144 1024.3321,-180"/>
|
||||
<text text-anchor="middle" x="885.9211" y="-157.8" font-family="Times,serif" font-size="14.00" fill="#ff0000">cosmossdk.io/depinject_test.ModuleB.Provide</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->[]github.com/cosmos/cosmos-sdk/container_test.Command -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleB.Provide->[]cosmossdk.io/depinject_test.Command -->
|
||||
<g id="edge11" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->[]github.com/cosmos/cosmos-sdk/container_test.Command</title>
|
||||
<path fill="none" stroke="#000000" d="M1051.5774,-143.9707C973.51,-132.729 873.6063,-118.3429 796.5778,-107.2508"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="796.7417,-103.7383 786.345,-105.7772 795.744,-110.6669 796.7417,-103.7383"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleB.Provide->[]cosmossdk.io/depinject_test.Command</title>
|
||||
<path fill="none" stroke="#000000" d="M789.2663,-143.9243C729.6773,-132.7804 653.6375,-118.56 594.6069,-107.5205"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="595.0121,-104.0356 584.5391,-105.6377 593.7253,-110.9164 595.0121,-104.0356"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KeeperB -->
|
||||
<!-- cosmossdk.io/depinject_test.KeeperB -->
|
||||
<g id="node9" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KeeperB</title>
|
||||
<ellipse fill="none" stroke="#ff0000" stroke-width=".5" cx="1664.7809" cy="-90" rx="215.2619" ry="18"/>
|
||||
<text text-anchor="middle" x="1664.7809" y="-86.3" font-family="Times,serif" font-size="14.00" fill="#ff0000">github.com/cosmos/cosmos-sdk/container_test.KeeperB</text>
|
||||
<title>cosmossdk.io/depinject_test.KeeperB</title>
|
||||
<ellipse fill="none" stroke="#ff0000" stroke-width=".5" cx="1258.9211" cy="-90" rx="156.28" ry="18"/>
|
||||
<text text-anchor="middle" x="1258.9211" y="-85.8" font-family="Times,serif" font-size="14.00" fill="#ff0000">cosmossdk.io/depinject_test.KeeperB</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->github.com/cosmos/cosmos-sdk/container_test.KeeperB -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleB.Provide->cosmossdk.io/depinject_test.KeeperB -->
|
||||
<g id="edge10" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->github.com/cosmos/cosmos-sdk/container_test.KeeperB</title>
|
||||
<path fill="none" stroke="#000000" d="M1298.9794,-143.9707C1375.4434,-132.6891 1473.371,-118.2408 1548.6579,-107.1329"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1549.2757,-110.5797 1558.6577,-105.6575 1548.2539,-103.6547 1549.2757,-110.5797"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleB.Provide->cosmossdk.io/depinject_test.KeeperB</title>
|
||||
<path fill="none" stroke="#000000" d="M979.5633,-143.9243C1037.3792,-132.7641 1111.1798,-118.5184 1168.4058,-107.4721"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1169.3719,-110.8503 1178.5273,-105.5184 1168.0451,-103.9772 1169.3719,-110.8503"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->map[string]github.com/cosmos/cosmos-sdk/container_test.Handler -->
|
||||
<!-- cosmossdk.io/depinject_test.ModuleB.Provide->map[string]cosmossdk.io/depinject_test.Handler -->
|
||||
<g id="edge12" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide->map[string]github.com/cosmos/cosmos-sdk/container_test.Handler</title>
|
||||
<path fill="none" stroke="#000000" d="M1176.7809,-143.8314C1176.7809,-136.131 1176.7809,-126.9743 1176.7809,-118.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1180.281,-118.4132 1176.7809,-108.4133 1173.281,-118.4133 1180.281,-118.4132"/>
|
||||
<title>cosmossdk.io/depinject_test.ModuleB.Provide->map[string]cosmossdk.io/depinject_test.Handler</title>
|
||||
<path fill="none" stroke="#000000" d="M885.9211,-143.8314C885.9211,-136.131 885.9211,-126.9743 885.9211,-118.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="889.4212,-118.4132 885.9211,-108.4133 882.4212,-118.4133 889.4212,-118.4132"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey -->
|
||||
<!-- cosmossdk.io/depinject_test.ProvideKVStoreKey -->
|
||||
<g id="node3" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey</title>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.5" points="1125.7809,-325 727.7809,-325 727.7809,-289 1125.7809,-289 1125.7809,-325"/>
|
||||
<text text-anchor="middle" x="926.7809" y="-303.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey</text>
|
||||
<title>cosmossdk.io/depinject_test.ProvideKVStoreKey</title>
|
||||
<polygon fill="none" stroke="#000000" stroke-width="1.5" points="839.5287,-326.4 546.3134,-326.4 546.3134,-290.4 839.5287,-290.4 839.5287,-326.4"/>
|
||||
<text text-anchor="middle" x="692.9211" y="-304.2" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject_test.ProvideKVStoreKey</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KVStoreKey -->
|
||||
<!-- cosmossdk.io/depinject_test.KVStoreKey -->
|
||||
<g id="node7" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KVStoreKey</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="926.7809" cy="-235" rx="230.9593" ry="18"/>
|
||||
<text text-anchor="middle" x="926.7809" y="-231.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container_test.KVStoreKey</text>
|
||||
<title>cosmossdk.io/depinject_test.KVStoreKey</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="692.9211" cy="-236.4" rx="172.4723" ry="18"/>
|
||||
<text text-anchor="middle" x="692.9211" y="-232.2" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject_test.KVStoreKey</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey->github.com/cosmos/cosmos-sdk/container_test.KVStoreKey -->
|
||||
<!-- cosmossdk.io/depinject_test.ProvideKVStoreKey->cosmossdk.io/depinject_test.KVStoreKey -->
|
||||
<g id="edge2" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey->github.com/cosmos/cosmos-sdk/container_test.KVStoreKey</title>
|
||||
<path fill="none" stroke="#000000" d="M926.7809,-288.8314C926.7809,-281.131 926.7809,-271.9743 926.7809,-263.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="930.281,-263.4132 926.7809,-253.4133 923.281,-263.4133 930.281,-263.4132"/>
|
||||
<title>cosmossdk.io/depinject_test.ProvideKVStoreKey->cosmossdk.io/depinject_test.KVStoreKey</title>
|
||||
<path fill="none" stroke="#000000" d="M692.9211,-290.2314C692.9211,-282.531 692.9211,-273.3743 692.9211,-264.8166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="696.4212,-264.8132 692.9211,-254.8133 689.4212,-264.8133 696.4212,-264.8132"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container.ModuleKey -->
|
||||
<!-- cosmossdk.io/depinject.ModuleKey -->
|
||||
<g id="node5" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container.ModuleKey</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="926.7809" cy="-380" rx="209.0631" ry="18"/>
|
||||
<text text-anchor="middle" x="926.7809" y="-376.3" font-family="Times,serif" font-size="14.00" fill="#000000">github.com/cosmos/cosmos-sdk/container.ModuleKey</text>
|
||||
<title>cosmossdk.io/depinject.ModuleKey</title>
|
||||
<ellipse fill="none" stroke="#000000" stroke-width="1.5" cx="692.9211" cy="-382.8" rx="149.9265" ry="18"/>
|
||||
<text text-anchor="middle" x="692.9211" y="-378.6" font-family="Times,serif" font-size="14.00" fill="#000000">cosmossdk.io/depinject.ModuleKey</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container.ModuleKey->github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey -->
|
||||
<!-- cosmossdk.io/depinject.ModuleKey->cosmossdk.io/depinject_test.ProvideKVStoreKey -->
|
||||
<g id="edge1" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container.ModuleKey->github.com/cosmos/cosmos-sdk/container_test.ProvideKVStoreKey</title>
|
||||
<path fill="none" stroke="#000000" d="M926.7809,-361.9551C926.7809,-353.8828 926.7809,-344.1764 926.7809,-335.1817"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="930.281,-335.0903 926.7809,-325.0904 923.281,-335.0904 930.281,-335.0903"/>
|
||||
<title>cosmossdk.io/depinject.ModuleKey->cosmossdk.io/depinject_test.ProvideKVStoreKey</title>
|
||||
<path fill="none" stroke="#000000" d="M692.9211,-364.7898C692.9211,-356.3533 692.9211,-346.1035 692.9211,-336.6684"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="696.4212,-336.5021 692.9211,-326.5022 689.4212,-336.5022 696.4212,-336.5021"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container.OwnModuleKey -->
|
||||
<!-- cosmossdk.io/depinject.OwnModuleKey -->
|
||||
<g id="node6" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container.OwnModuleKey</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="450.7809" cy="-235" rx="226.6599" ry="18"/>
|
||||
<text text-anchor="middle" x="450.7809" y="-231.3" font-family="Times,serif" font-size="14.00" fill="#696969">github.com/cosmos/cosmos-sdk/container.OwnModuleKey</text>
|
||||
<title>cosmossdk.io/depinject.OwnModuleKey</title>
|
||||
<ellipse fill="none" stroke="#d3d3d3" stroke-width=".5" cx="333.9211" cy="-236.4" rx="168.9692" ry="18"/>
|
||||
<text text-anchor="middle" x="333.9211" y="-232.2" font-family="Times,serif" font-size="14.00" fill="#696969">cosmossdk.io/depinject.OwnModuleKey</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container.OwnModuleKey->github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide -->
|
||||
<!-- cosmossdk.io/depinject.OwnModuleKey->cosmossdk.io/depinject_test.ModuleA.Provide -->
|
||||
<g id="edge4" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container.OwnModuleKey->github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M504.9135,-217.5147C536.7663,-207.2259 577.2772,-194.1405 610.9672,-183.2584"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="612.2896,-186.5094 620.7297,-180.105 610.138,-179.8482 612.2896,-186.5094"/>
|
||||
<title>cosmossdk.io/depinject.OwnModuleKey->cosmossdk.io/depinject_test.ModuleA.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M373.4977,-218.7682C396.7611,-208.4042 426.3832,-195.2073 451.2109,-184.1463"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="452.7582,-187.2887 460.4684,-180.022 449.9095,-180.8945 452.7582,-187.2887"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KVStoreKey->github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide -->
|
||||
<!-- cosmossdk.io/depinject_test.KVStoreKey->cosmossdk.io/depinject_test.ModuleA.Provide -->
|
||||
<g id="edge3" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KVStoreKey->github.com/cosmos/cosmos-sdk/container_test.ModuleA.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M867.2172,-217.6074C831.5542,-207.1938 785.9946,-193.8904 748.3799,-182.9069"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="749.0792,-179.465 738.499,-180.0217 747.1171,-186.1844 749.0792,-179.465"/>
|
||||
<title>cosmossdk.io/depinject_test.KVStoreKey->cosmossdk.io/depinject_test.ModuleA.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M647.9056,-218.9565C620.8194,-208.4606 586.1048,-195.0087 557.2143,-183.8136"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="558.2484,-180.4608 547.6594,-180.1111 555.7191,-186.9879 558.2484,-180.4608"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KVStoreKey->github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide -->
|
||||
<!-- cosmossdk.io/depinject_test.KVStoreKey->cosmossdk.io/depinject_test.ModuleB.Provide -->
|
||||
<g id="edge8" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KVStoreKey->github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M986.3445,-217.6074C1022.0075,-207.1938 1067.5671,-193.8904 1105.1818,-182.9069"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1106.4446,-186.1844 1115.0627,-180.0217 1104.4825,-179.465 1106.4446,-186.1844"/>
|
||||
<title>cosmossdk.io/depinject_test.KVStoreKey->cosmossdk.io/depinject_test.ModuleB.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M738.171,-218.9565C765.3983,-208.4606 800.2937,-195.0087 829.3346,-183.8136"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="830.8676,-186.9738 838.9393,-180.1111 828.3497,-180.4423 830.8676,-186.9738"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.TestGraphAndLogOutput -->
|
||||
<!-- cosmossdk.io/depinject_test.TestGraphAndLogOutput -->
|
||||
<g id="node11" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.TestGraphAndLogOutput</title>
|
||||
<polygon fill="none" stroke="#ff0000" stroke-width=".5" points="1984.6974,-18 1824.7391,-36 1504.8226,-36 1344.8643,-18 1504.8226,0 1824.7391,0 1984.6974,-18"/>
|
||||
<text text-anchor="middle" x="1664.7809" y="-14.3" font-family="Times,serif" font-size="14.00" fill="#ff0000">github.com/cosmos/cosmos-sdk/container_test.TestGraphAndLogOutput</text>
|
||||
<title>cosmossdk.io/depinject_test.TestGraphAndLogOutput</title>
|
||||
<polygon fill="none" stroke="#ff0000" stroke-width=".5" points="1515.2362,-18 1387.0786,-36 1130.7635,-36 1002.6059,-18 1130.7635,0 1387.0786,0 1515.2362,-18"/>
|
||||
<text text-anchor="middle" x="1258.9211" y="-13.8" font-family="Times,serif" font-size="14.00" fill="#ff0000">cosmossdk.io/depinject_test.TestGraphAndLogOutput</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.KeeperB->github.com/cosmos/cosmos-sdk/container_test.TestGraphAndLogOutput -->
|
||||
<!-- cosmossdk.io/depinject_test.KeeperB->cosmossdk.io/depinject_test.TestGraphAndLogOutput -->
|
||||
<g id="edge13" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.KeeperB->github.com/cosmos/cosmos-sdk/container_test.TestGraphAndLogOutput</title>
|
||||
<path fill="none" stroke="#000000" d="M1664.7809,-71.8314C1664.7809,-64.131 1664.7809,-54.9743 1664.7809,-46.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1668.281,-46.4132 1664.7809,-36.4133 1661.281,-46.4133 1668.281,-46.4132"/>
|
||||
<title>cosmossdk.io/depinject_test.KeeperB->cosmossdk.io/depinject_test.TestGraphAndLogOutput</title>
|
||||
<path fill="none" stroke="#000000" d="M1258.9211,-71.8314C1258.9211,-64.131 1258.9211,-54.9743 1258.9211,-46.4166"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1262.4212,-46.4132 1258.9211,-36.4133 1255.4212,-46.4133 1262.4212,-46.4132"/>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.MsgClientA -->
|
||||
<!-- cosmossdk.io/depinject_test.MsgClientA -->
|
||||
<g id="node10" class="node">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.MsgClientA</title>
|
||||
<ellipse fill="none" stroke="#ff0000" stroke-width=".5" cx="1403.7809" cy="-235" rx="228.2596" ry="18"/>
|
||||
<text text-anchor="middle" x="1403.7809" y="-231.3" font-family="Times,serif" font-size="14.00" fill="#ff0000">github.com/cosmos/cosmos-sdk/container_test.MsgClientA</text>
|
||||
<title>cosmossdk.io/depinject_test.MsgClientA</title>
|
||||
<ellipse fill="none" stroke="#ff0000" stroke-width=".5" cx="1052.9211" cy="-236.4" rx="169.6418" ry="18"/>
|
||||
<text text-anchor="middle" x="1052.9211" y="-232.2" font-family="Times,serif" font-size="14.00" fill="#ff0000">cosmossdk.io/depinject_test.MsgClientA</text>
|
||||
</g>
|
||||
<!-- github.com/cosmos/cosmos-sdk/container_test.MsgClientA->github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide -->
|
||||
<!-- cosmossdk.io/depinject_test.MsgClientA->cosmossdk.io/depinject_test.ModuleB.Provide -->
|
||||
<g id="edge9" class="edge">
|
||||
<title>github.com/cosmos/cosmos-sdk/container_test.MsgClientA->github.com/cosmos/cosmos-sdk/container_test.ModuleB.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M1349.4087,-217.5147C1317.4149,-207.2259 1276.7248,-194.1405 1242.8858,-183.2584"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="1243.6714,-179.8346 1233.08,-180.105 1241.5283,-186.4985 1243.6714,-179.8346"/>
|
||||
<title>cosmossdk.io/depinject_test.MsgClientA->cosmossdk.io/depinject_test.ModuleB.Provide</title>
|
||||
<path fill="none" stroke="#000000" d="M1013.3444,-218.7682C990.081,-208.4042 960.4589,-195.2073 935.6312,-184.1463"/>
|
||||
<polygon fill="#000000" stroke="#000000" points="936.9326,-180.8945 926.3737,-180.022 934.0839,-187.2887 936.9326,-180.8945"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 14 KiB |
4
go.mod
4
go.mod
@ -17,7 +17,7 @@ require (
|
||||
github.com/cosmos/btcutil v1.0.4
|
||||
github.com/cosmos/cosmos-proto v1.0.0-alpha7
|
||||
github.com/cosmos/cosmos-sdk/db v1.0.0-beta.1
|
||||
github.com/cosmos/cosmos-sdk/depinject v1.0.0-alpha.4
|
||||
cosmossdk.io/depinject v1.0.0-alpha.4
|
||||
github.com/cosmos/cosmos-sdk/store/tools/ics23 v0.0.0-20220608170201-b0e82f964070
|
||||
github.com/cosmos/go-bip39 v1.0.0
|
||||
github.com/cosmos/iavl v0.18.0
|
||||
@ -280,7 +280,7 @@ replace (
|
||||
cosmossdk.io/core => ./core
|
||||
github.com/99designs/keyring => github.com/cosmos/keyring v1.1.7-0.20210622111912-ef00f8ac3d76
|
||||
github.com/cosmos/cosmos-sdk/db => ./db
|
||||
github.com/cosmos/cosmos-sdk/depinject => ./depinject
|
||||
cosmossdk.io/depinject => ./depinject
|
||||
|
||||
// Fix upstream GHSA-h395-qcrw-5vmq vulnerability.
|
||||
// TODO Remove it: https://github.com/cosmos/cosmos-sdk/issues/10409
|
||||
|
||||
@ -7,10 +7,10 @@ import (
|
||||
|
||||
runtimev1alpha1 "cosmossdk.io/api/cosmos/app/runtime/v1alpha1"
|
||||
"cosmossdk.io/core/appmodule"
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/std"
|
||||
storetypes "github.com/cosmos/cosmos-sdk/store/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/module"
|
||||
|
||||
@ -16,11 +16,11 @@ import (
|
||||
tmos "github.com/tendermint/tendermint/libs/os"
|
||||
dbm "github.com/tendermint/tm-db"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
"github.com/cosmos/cosmos-sdk/server/api"
|
||||
"github.com/cosmos/cosmos-sdk/server/config"
|
||||
|
||||
@ -15,13 +15,13 @@ import (
|
||||
tmtypes "github.com/tendermint/tendermint/types"
|
||||
dbm "github.com/tendermint/tm-db"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"cosmossdk.io/math"
|
||||
bam "github.com/cosmos/cosmos-sdk/baseapp"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/client/flags"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
|
||||
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/server"
|
||||
"github.com/cosmos/cosmos-sdk/server/types"
|
||||
"github.com/cosmos/cosmos-sdk/simapp/params"
|
||||
|
||||
@ -26,6 +26,7 @@ import (
|
||||
|
||||
"cosmossdk.io/math"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/client/tx"
|
||||
@ -34,7 +35,6 @@ import (
|
||||
"github.com/cosmos/cosmos-sdk/crypto/hd"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keyring"
|
||||
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
pruningtypes "github.com/cosmos/cosmos-sdk/pruning/types"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
"github.com/cosmos/cosmos-sdk/server"
|
||||
|
||||
@ -13,12 +13,12 @@ import (
|
||||
tmtypes "github.com/tendermint/tendermint/types"
|
||||
dbm "github.com/tendermint/tm-db"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client/flags"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
servertypes "github.com/cosmos/cosmos-sdk/server/types"
|
||||
"github.com/cosmos/cosmos-sdk/testutil/mock"
|
||||
|
||||
@ -7,9 +7,9 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/testutil"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/auth/client/cli"
|
||||
|
||||
@ -14,8 +14,8 @@ import (
|
||||
"github.com/stretchr/testify/suite"
|
||||
tmcli "github.com/tendermint/tendermint/libs/cli"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"cosmossdk.io/math"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
authtestutil "github.com/cosmos/cosmos-sdk/x/auth/testutil"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
|
||||
@ -7,12 +7,12 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/testutil"
|
||||
"github.com/cosmos/cosmos-sdk/testutil/testdata"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -6,7 +6,7 @@ import (
|
||||
"fmt"
|
||||
"math/rand"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
|
||||
gwruntime "github.com/grpc-ecosystem/grpc-gateway/runtime"
|
||||
|
||||
|
||||
@ -7,9 +7,9 @@ import (
|
||||
gogotypes "github.com/gogo/protobuf/types"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/kv"
|
||||
"github.com/cosmos/cosmos-sdk/x/auth/simulation"
|
||||
|
||||
@ -5,11 +5,11 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/client/tx"
|
||||
clienttx "github.com/cosmos/cosmos-sdk/client/tx"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/testutil/testdata"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
txtypes "github.com/cosmos/cosmos-sdk/types/tx"
|
||||
|
||||
@ -5,10 +5,10 @@ import (
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/tx/module/v1"
|
||||
"cosmossdk.io/core/appmodule"
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/auth/ante"
|
||||
|
||||
@ -9,8 +9,8 @@ import (
|
||||
"github.com/stretchr/testify/require"
|
||||
"sigs.k8s.io/yaml"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/testutil/testdata"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
|
||||
|
||||
@ -4,8 +4,8 @@ import (
|
||||
"encoding/json"
|
||||
"testing"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
proto "github.com/gogo/protobuf/proto"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
|
||||
@ -7,10 +7,10 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/module"
|
||||
|
||||
@ -4,10 +4,10 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/testutil"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/authz"
|
||||
|
||||
@ -12,11 +12,11 @@ import (
|
||||
modulev1 "cosmossdk.io/api/cosmos/authz/module/v1"
|
||||
"cosmossdk.io/core/appmodule"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||
sdkclient "github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -7,8 +7,8 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/kv"
|
||||
"github.com/cosmos/cosmos-sdk/x/authz"
|
||||
|
||||
@ -7,9 +7,9 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
sdkmath "cosmossdk.io/math"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/types/module"
|
||||
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
|
||||
"github.com/cosmos/cosmos-sdk/x/authz"
|
||||
|
||||
@ -8,7 +8,7 @@ import (
|
||||
"time"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/bank/module/v1"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
|
||||
"github.com/tendermint/tendermint/crypto"
|
||||
|
||||
@ -13,10 +13,10 @@ import (
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/capability/module/v1"
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
"github.com/cosmos/cosmos-sdk/telemetry"
|
||||
|
||||
@ -6,8 +6,8 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/kv"
|
||||
"github.com/cosmos/cosmos-sdk/x/capability/simulation"
|
||||
|
||||
@ -12,10 +12,10 @@ import (
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/crisis/module/v1"
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
"github.com/cosmos/cosmos-sdk/server"
|
||||
servertypes "github.com/cosmos/cosmos-sdk/server/types"
|
||||
|
||||
@ -6,16 +6,16 @@ import (
|
||||
"fmt"
|
||||
"math/rand"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/distribution/module/v1"
|
||||
"cosmossdk.io/core/appmodule"
|
||||
gwruntime "github.com/grpc-ecosystem/grpc-gateway/runtime"
|
||||
"github.com/spf13/cobra"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/distribution/module/v1"
|
||||
"cosmossdk.io/core/appmodule"
|
||||
"cosmossdk.io/depinject"
|
||||
sdkclient "github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -6,9 +6,9 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/kv"
|
||||
"github.com/cosmos/cosmos-sdk/x/distribution/simulation"
|
||||
|
||||
@ -3,8 +3,8 @@ package keeper_test
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/x/evidence/exported"
|
||||
|
||||
@ -11,10 +11,10 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -7,8 +7,8 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/kv"
|
||||
"github.com/cosmos/cosmos-sdk/x/evidence/keeper"
|
||||
|
||||
@ -8,9 +8,9 @@ import (
|
||||
"github.com/stretchr/testify/require"
|
||||
ocproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
|
||||
|
||||
@ -4,9 +4,9 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/testutil"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/x/feegrant"
|
||||
|
||||
@ -12,10 +12,10 @@ import (
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/feegrant/module/v1"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
sdkclient "github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -6,9 +6,9 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/kv"
|
||||
"github.com/cosmos/cosmos-sdk/x/feegrant"
|
||||
|
||||
@ -10,10 +10,10 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/module"
|
||||
|
||||
@ -9,19 +9,19 @@ import (
|
||||
"math/rand"
|
||||
"sort"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/gov/module/v1"
|
||||
"cosmossdk.io/core/appmodule"
|
||||
gwruntime "github.com/grpc-ecosystem/grpc-gateway/runtime"
|
||||
"github.com/spf13/cobra"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
"golang.org/x/exp/maps"
|
||||
"golang.org/x/exp/slices"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/gov/module/v1"
|
||||
"cosmossdk.io/core/appmodule"
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -12,11 +12,11 @@ import (
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/group/module/v1"
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||
sdkclient "github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -5,8 +5,8 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/x/group"
|
||||
"github.com/cosmos/cosmos-sdk/x/group/testutil"
|
||||
)
|
||||
|
||||
@ -6,8 +6,8 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/testutil/testdata"
|
||||
"github.com/cosmos/cosmos-sdk/types/kv"
|
||||
"github.com/cosmos/cosmos-sdk/x/group"
|
||||
|
||||
@ -7,9 +7,9 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
sdkmath "cosmossdk.io/math"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/types/module"
|
||||
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
|
||||
"github.com/cosmos/cosmos-sdk/x/group"
|
||||
|
||||
@ -12,10 +12,10 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -10,10 +10,10 @@ import (
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
"cosmossdk.io/core/appmodule"
|
||||
"cosmossdk.io/depinject"
|
||||
sdkclient "github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
package keeper_test
|
||||
|
||||
import (
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
storetypes "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdktestutil "github.com/cosmos/cosmos-sdk/testutil"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -3,16 +3,17 @@ package params
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
|
||||
"math/rand"
|
||||
|
||||
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
|
||||
|
||||
gwruntime "github.com/grpc-ecosystem/grpc-gateway/runtime"
|
||||
"github.com/spf13/cobra"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/params/module/v1"
|
||||
"cosmossdk.io/core/appmodule"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
|
||||
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||
|
||||
@ -11,8 +11,8 @@ import (
|
||||
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
||||
dbm "github.com/tendermint/tm-db"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/store"
|
||||
storetypes "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -14,10 +14,10 @@ import (
|
||||
"github.com/spf13/cobra"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
|
||||
|
||||
@ -8,9 +8,9 @@ import (
|
||||
gogotypes "github.com/gogo/protobuf/types"
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/kv"
|
||||
"github.com/cosmos/cosmos-sdk/x/slashing/simulation"
|
||||
|
||||
@ -8,10 +8,10 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/require"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
sdkmath "cosmossdk.io/math"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/module"
|
||||
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
|
||||
|
||||
@ -7,17 +7,17 @@ import (
|
||||
"math/rand"
|
||||
"sort"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/staking/module/v1"
|
||||
"cosmossdk.io/core/appmodule"
|
||||
gwruntime "github.com/grpc-ecosystem/grpc-gateway/runtime"
|
||||
"github.com/spf13/cobra"
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
"golang.org/x/exp/maps"
|
||||
|
||||
modulev1 "cosmossdk.io/api/cosmos/staking/module/v1"
|
||||
"cosmossdk.io/core/appmodule"
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
store "github.com/cosmos/cosmos-sdk/store/types"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -12,9 +12,9 @@ import (
|
||||
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
||||
"golang.org/x/exp/maps"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client/flags"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/server"
|
||||
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
|
||||
@ -8,8 +8,8 @@ import (
|
||||
"github.com/stretchr/testify/suite"
|
||||
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
||||
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/baseapp"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
|
||||
sdk "github.com/cosmos/cosmos-sdk/types"
|
||||
"github.com/cosmos/cosmos-sdk/types/module"
|
||||
|
||||
@ -3,6 +3,7 @@ package upgrade
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
|
||||
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
|
||||
|
||||
gwruntime "github.com/grpc-ecosystem/grpc-gateway/runtime"
|
||||
@ -11,11 +12,11 @@ import (
|
||||
abci "github.com/tendermint/tendermint/abci/types"
|
||||
|
||||
"cosmossdk.io/core/appmodule"
|
||||
"cosmossdk.io/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/client"
|
||||
"github.com/cosmos/cosmos-sdk/client/flags"
|
||||
"github.com/cosmos/cosmos-sdk/codec"
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
"github.com/cosmos/cosmos-sdk/depinject"
|
||||
"github.com/cosmos/cosmos-sdk/runtime"
|
||||
"github.com/cosmos/cosmos-sdk/server"
|
||||
servertypes "github.com/cosmos/cosmos-sdk/server/types"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user