Add some initial files

This commit is contained in:
Ben McDonald 2025-06-05 15:30:15 -07:00
parent 04e1fb26c9
commit 7aeb3aa6c5
No known key found for this signature in database
5 changed files with 141 additions and 0 deletions

15
cmd/pdu.go Normal file
View file

@ -0,0 +1,15 @@
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)
}