mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-07-07 13:12:31 +00:00
14 lines
378 B
Protocol Buffer
14 lines
378 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.machine.module;
|
|
|
|
import "cosmos/app/v1alpha1/module.proto";
|
|
|
|
// Module is the config object for the module.
|
|
message Module {
|
|
option (cosmos.app.v1alpha1.module) = {
|
|
go_import: "planetmint-go/x/machine"
|
|
};
|
|
|
|
// authority defines the custom module authority. If not set, defaults to the governance module.
|
|
string authority = 1;
|
|
} |