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