mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
12 lines
332 B
Protocol Buffer
12 lines
332 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package kava.savings.v1beta1;
|
||
|
|
||
|
import "gogoproto/gogo.proto";
|
||
|
|
||
|
option go_package = "github.com/kava-labs/kava/x/savings/types";
|
||
|
option (gogoproto.equal_all) = true;
|
||
|
option (gogoproto.verbose_equal_all) = true;
|
||
|
|
||
|
// Params defines the parameters for the savings module.
|
||
|
message Params {}
|