Lorenz Herzberger 3bb8994e41
wip: trying to get machine e2e tests to run
Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
2024-06-17 12:08:02 +02:00

14 lines
378 B
Protocol Buffer

syntax = "proto3";
package planetmintgo.machine.module;
import "cosmos/app/v1alpha1/module.proto";
// Module is the config object for the module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "planetmint-go/x/machine"
};
// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}