mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-18 12:06:37 +00:00
13 lines
317 B
Protocol Buffer
13 lines
317 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.machine;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
import "planetmintgo/machine/params.proto";
|
|
|
|
option go_package = "planetmint-go/x/machine/types";
|
|
|
|
// GenesisState defines the machine module's genesis state.
|
|
message GenesisState {
|
|
Params params = 1 [(gogoproto.nullable) = false];
|
|
}
|