mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
18 lines
434 B
Go
18 lines
434 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
govclient "github.com/cosmos/cosmos-sdk/x/gov/client"
|
||
|
|
||
|
"github.com/kava-labs/kava/x/community/client/cli"
|
||
|
)
|
||
|
|
||
|
// community-pool deposit/withdraw lend proposal handlers
|
||
|
var (
|
||
|
LendDepositProposalHandler = govclient.NewProposalHandler(
|
||
|
cli.NewCmdSubmitCommunityPoolLendDepositProposal,
|
||
|
)
|
||
|
LendWithdrawProposalHandler = govclient.NewProposalHandler(
|
||
|
cli.NewCmdSubmitCommunityPoolLendWithdrawProposal,
|
||
|
)
|
||
|
)
|