refactor(core)!: cleanup dependency graph (#18866)

Co-authored-by: Likhita Polavarapu <78951027+likhita-809@users.noreply.github.com>
This commit is contained in:
Marko
2024-01-09 15:14:36 +00:00
committed by GitHub
co-authored by Likhita Polavarapu
parent f431a5039c
commit bde7eb1a4d
99 changed files with 432 additions and 476 deletions
-4
View File
@@ -4,8 +4,6 @@ import (
"context"
"google.golang.org/grpc"
"cosmossdk.io/depinject"
)
// AppModule is a tag interface for app module implementations to use as a basis
@@ -13,8 +11,6 @@ import (
// type that all valid app modules should provide so that they can be identified
// by other modules (usually via depinject) as app modules.
type AppModule interface {
depinject.OnePerModuleType
// IsAppModule is a dummy method to tag a struct as implementing an AppModule.
IsAppModule()
}