* feat: start app wiring with runtime and x/params modules * WIP * WIP * docs * docs, cleanup * fixing tests * rollback unrelated changes * fix * test fixes * simplification, tests * fix tests * docs * go mod tidy * update module path * codegen * address middleware removal * update container alpha 4 * Fix cosmossdk.io/api dependency conflict - go mod tidy Co-authored-by: Matt Kocubinski <mkocubinski@gmail.com>
13 lines
272 B
Protocol Buffer
13 lines
272 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cosmos.params.module.v1;
|
|
|
|
import "cosmos/app/v1alpha1/module.proto";
|
|
|
|
// Module is the config object of the params module.
|
|
message Module {
|
|
option (cosmos.app.v1alpha1.module) = {
|
|
go_import: "github.com/cosmos/cosmos-sdk/x/params"
|
|
};
|
|
}
|