From c379d248ffcc7255d378c89f5d01d866a2d2b88a Mon Sep 17 00:00:00 2001 From: Ben McDonald Date: Tue, 17 Jun 2025 11:06:54 -0700 Subject: [PATCH] Remove unused PDU command --- cmd/pdu.go | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 cmd/pdu.go diff --git a/cmd/pdu.go b/cmd/pdu.go deleted file mode 100644 index bfe00f2..0000000 --- a/cmd/pdu.go +++ /dev/null @@ -1,15 +0,0 @@ -package cmd - -import ( - "github.com/spf13/cobra" -) - -var PduCmd = &cobra.Command{ - Use: "pdu", - Short: "Perform actions on Power Distribution Units (PDUs)", - Long: `A collection of commands to discover and manage PDUs that may not use the Redfish protocol.`, -} - -func init() { - rootCmd.AddCommand(PduCmd) -}