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