mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
14 lines
321 B
Protocol Buffer
Executable File
14 lines
321 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
|
|
package dex.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/sonr-io/sonr"
|
|
};
|
|
}
|