mirror of
https://github.com/miguelmota/cointop
synced 2024-11-05 00:00:14 +00:00
30 lines
824 B
Go
30 lines
824 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/miguelmota/cointop/cointop"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// DominanceCmd ...
|
|
func DominanceCmd() *cobra.Command {
|
|
var apiChoice string
|
|
var currency string
|
|
|
|
dominanceCmd := &cobra.Command{
|
|
Use: "dominance",
|
|
Short: "Displays bitcoin dominance",
|
|
Long: `The dominance command display the dominance percentage of bitcoin`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return cointop.PrintBitcoinDominance(&cointop.DominanceConfig{
|
|
Currency: currency,
|
|
APIChoice: apiChoice,
|
|
})
|
|
},
|
|
}
|
|
|
|
dominanceCmd.Flags().StringVarP(¤cy, "currency", "f", "USD", "The currency to convert to")
|
|
dominanceCmd.Flags().StringVarP(&apiChoice, "api", "a", cointop.CoinGecko, "API choice. Available choices are \"coinmarketcap\" and \"coingecko\"")
|
|
|
|
return dominanceCmd
|
|
}
|