mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-10 08:06:39 +00:00
13 lines
254 B
Protocol Buffer
13 lines
254 B
Protocol Buffer
syntax = "proto3";
|
|
package planetmintgo.machine;
|
|
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "planetmint-go/x/machine/types";
|
|
|
|
// Params defines the parameters for the module.
|
|
message Params {
|
|
option (gogoproto.goproto_stringer) = false;
|
|
|
|
}
|