From 9ee6876e95532a8a0fc31059907a36a79f255bc4 Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 19 Aug 2025 21:01:25 +0200 Subject: [PATCH] chore: removes sample code from today cmd --- cmd/today.go | 3 --- 1 file changed, 3 deletions(-) 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") }, }