syntax = "proto3"; package planetmintgo.machine; import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "planetmintgo/machine/params.proto"; option go_package = "github.com/planetmint/planetmint-go/x/machine/types"; // GenesisState defines the machine module's genesis state. message GenesisState { // params defines all the parameters of the module. Params params = 1 [ (gogoproto.nullable) = false, (amino.dont_omitempty) = true ]; }