mirror of
https://github.com/miguelmota/cointop
synced 2024-11-10 13:10:26 +00:00
0576b043d4
Remove top empty line
43 lines
1.2 KiB
Go
43 lines
1.2 KiB
Go
package cmd
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/miguelmota/cointop/cointop"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// PriceCmd ...
|
|
func PriceCmd() *cobra.Command {
|
|
var apiChoice string
|
|
var coin string
|
|
var coins []string
|
|
var currency string
|
|
|
|
priceCmd := &cobra.Command{
|
|
Use: "price",
|
|
Short: "Displays the current price of coin(s)",
|
|
Long: `The price command display the current price of a coin`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if coin != "" {
|
|
if len(coins) > 0 {
|
|
return errors.New("flags --coin and --coins cannot be used at the same time")
|
|
}
|
|
coins = append(coins, coin)
|
|
}
|
|
return cointop.PrintPrices(&cointop.PricesConfig{
|
|
Coins: coins,
|
|
Currency: currency,
|
|
APIChoice: apiChoice,
|
|
})
|
|
},
|
|
}
|
|
|
|
priceCmd.Flags().StringSliceVarP(&coins, "coins", "c", nil, "Name or symbol of coin(s), comma separated. E.g. \"Bitcoin\" Eg. \"btc,eth,doge\"")
|
|
priceCmd.Flags().StringVarP(&coin, "coin", "", "", "Name or symbol of coin. Alias for --coins")
|
|
priceCmd.Flags().StringVarP(¤cy, "currency", "f", "USD", "The currency to convert to")
|
|
priceCmd.Flags().StringVarP(&apiChoice, "api", "a", cointop.CoinGecko, "API choice. Available choices are \"coinmarketcap\" and \"coingecko\"")
|
|
|
|
return priceCmd
|
|
}
|