mirror of
https://github.com/miguelmota/cointop
synced 2024-11-05 00:00:14 +00:00
30 lines
719 B
Go
30 lines
719 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/miguelmota/cointop/cointop"
|
|
"github.com/miguelmota/cointop/pkg/filecache"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// ResetCmd ...
|
|
func ResetCmd() *cobra.Command {
|
|
cacheDir := filecache.DefaultCacheDir
|
|
|
|
resetCmd := &cobra.Command{
|
|
Use: "reset",
|
|
Short: "Resets the config and clear the cache",
|
|
Long: `The reset command resets the config and clears the cache`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
// NOTE: if reset command, reset but don't run cointop
|
|
return cointop.Reset(&cointop.ResetConfig{
|
|
Log: true,
|
|
CacheDir: cacheDir,
|
|
})
|
|
},
|
|
}
|
|
|
|
resetCmd.Flags().StringVarP(&cacheDir, "cache-dir", "", cacheDir, "Cache directory")
|
|
|
|
return resetCmd
|
|
}
|