forked from cerc-io/registry-sdk
ce3cfbd457
* Update proto files * Update script to generate typescript definitions * Generate typescript definitions from protobuf files * Cleanup unnecessary proto files --------- Co-authored-by: neeraj <neeraj.rtly@gmail.com>
14 lines
347 B
Protocol Buffer
14 lines
347 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cerc.registry.module.v1;
|
|
|
|
import "cosmos/app/v1alpha1/module.proto";
|
|
|
|
// Module is the app config object of the module.
|
|
// Learn more: https://docs.cosmos.network/main/building-modules/depinject
|
|
message Module {
|
|
option (cosmos.app.v1alpha1.module) = {
|
|
go_import : "git.vdb.to/cerc-io/laconic2d/x/registry"
|
|
};
|
|
}
|