mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 18:01:39 +00:00
13 lines
323 B
Protocol Buffer
13 lines
323 B
Protocol Buffer
syntax = "proto3";
|
|||
|
|
|
||
|
|
package service.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 : "github.com/onsonr/sonr"
|
||
|
|
};
|
||
|
|
}
|