2022-08-25 16:51:14 -07:00
|
|
|
package cli
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
// "strings"
|
|
|
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
|
|
// "github.com/cosmos/cosmos-sdk/client/flags"
|
|
|
|
// sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
|
|
|
|
"cosmos-test/x/cosmostest/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetQueryCmd returns the cli query commands for this module
|
|
|
|
func GetQueryCmd(queryRoute string) *cobra.Command {
|
|
|
|
// Group cosmostest queries under a subcommand
|
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: types.ModuleName,
|
|
|
|
Short: fmt.Sprintf("Querying commands for the %s module", types.ModuleName),
|
|
|
|
DisableFlagParsing: true,
|
|
|
|
SuggestionsMinimumDistance: 2,
|
|
|
|
RunE: client.ValidateCmd,
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.AddCommand(CmdQueryParams())
|
2022-08-25 18:49:35 -07:00
|
|
|
cmd.AddCommand(CmdShowNextAuction())
|
|
|
|
cmd.AddCommand(CmdListAuction())
|
|
|
|
cmd.AddCommand(CmdShowAuction())
|
2022-08-25 16:51:14 -07:00
|
|
|
// this line is used by starport scaffolding # 1
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|