diff --git a/cmd/today.go b/cmd/today.go index ff0aa7c..827e80c 100644 --- a/cmd/today.go +++ b/cmd/today.go @@ -20,7 +20,6 @@ import ( "fmt" "github.com/spf13/cobra" - "github.com/spf13/viper" ) // todayCmd represents the today command @@ -34,8 +33,6 @@ Cobra is a CLI library for Go that empowers applications. This application is a tool to generate the needed files to quickly create a Cobra application.`, Run: func(cmd *cobra.Command, args []string) { - dbPath := viper.GetString("path") - fmt.Println(dbPath) fmt.Println("today called") }, }