From 48e4fb9f7b224be7a067d679a9fe361b4cb19e5a Mon Sep 17 00:00:00 2001 From: Deivid Soto Date: Wed, 1 Apr 2026 12:29:05 +0200 Subject: [PATCH] fix(lint): remove unused newStubCmd function --- internal/cmd/stubs.go | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 internal/cmd/stubs.go diff --git a/internal/cmd/stubs.go b/internal/cmd/stubs.go deleted file mode 100644 index bcd0d90..0000000 --- a/internal/cmd/stubs.go +++ /dev/null @@ -1,22 +0,0 @@ -package cmd - -import ( - "fmt" - - "github.com/fatih/color" - "github.com/spf13/cobra" -) - -func newStubCmd(name, short string) *cobra.Command { - return &cobra.Command{ - Use: name, - Short: short + " (coming soon)", - Run: func(cmd *cobra.Command, args []string) { - fmt.Println() - color.New(color.FgYellow).Printf(" ⚠️ '%s' is coming in a future release.\n", name) - fmt.Println() - fmt.Println(" Follow progress at: https://github.com/torrentclaw/unarr") - fmt.Println() - }, - } -}