From 835c7eb49db9a9945a71d9d6dfc3ca1d9ff89e38 Mon Sep 17 00:00:00 2001 From: Erik Kristensen Date: Sun, 1 Sep 2024 20:35:34 -0600 Subject: [PATCH] feat: remove uninstall command for the moment --- pkg/commands/uninstall/uninstall.go | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 pkg/commands/uninstall/uninstall.go diff --git a/pkg/commands/uninstall/uninstall.go b/pkg/commands/uninstall/uninstall.go deleted file mode 100644 index 4616c6e..0000000 --- a/pkg/commands/uninstall/uninstall.go +++ /dev/null @@ -1,23 +0,0 @@ -package uninstall - -import ( - "github.com/ekristen/distillery/pkg/common" - "github.com/urfave/cli/v2" -) - -func Execute(c *cli.Context) error { - return nil -} - -func init() { - cmd := &cli.Command{ - Name: "uninstall", - Usage: "uninstall", - Description: `list installed binaries`, - Before: common.Before, - Flags: common.Flags(), - Action: Execute, - } - - common.RegisterCommand(cmd) -}