15 lines
396 B
Protocol Buffer
15 lines
396 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cosmos.orm.module.v1alpha1;
|
|
|
|
import "cosmos/app/v1alpha1/module.proto";
|
|
|
|
// Module defines the ORM module which adds providers to the app container for
|
|
// module-scoped DB's. In the future it may provide gRPC services for interacting
|
|
// with ORM data.
|
|
message Module {
|
|
option (cosmos.app.v1alpha1.module) = {
|
|
go_import: "github.com/cosmos/cosmos-sdk/orm"
|
|
};
|
|
}
|