test(api): add simple counter module (#18271)

This commit is contained in:
Marko
2023-10-26 12:15:00 +00:00
committed by GitHub
parent e0d84b765c
commit a755fefe3a
2 changed files with 594 additions and 0 deletions
@@ -0,0 +1,15 @@
syntax = "proto3";
package cosmos.counter.module.v1;
import "cosmos/app/v1alpha1/module.proto";
// Module is the config object of the counter module.
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import: "github.com/cosmos/cosmos-sdk/x/counter"
};
// authority defines the custom module authority. If not set, defaults to the governance module.
string authority = 1;
}