cosmos-sdk/proto/cosmos/slashing/module/v1/module.proto
atheeshp 4e6545bbe5
feat: migrate x/slashing to use app wiring (#12200)
* feat: migrate `x/slashing` to use app wiring

* Update proto/cosmos/slashing/module/v1/module.proto
2022-06-09 15:19:19 +02:00

13 lines
278 B
Protocol Buffer

syntax = "proto3";
package cosmos.slashing.module.v1;
import "cosmos/app/v1alpha1/module.proto";
// Module is the config object of the slashing module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "github.com/cosmos/cosmos-sdk/x/slashing"
};
}