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