mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 11:37:01 -07:00
Add some initial files
This commit is contained in:
parent
04e1fb26c9
commit
7aeb3aa6c5
5 changed files with 141 additions and 0 deletions
15
cmd/pdu.go
Normal file
15
cmd/pdu.go
Normal 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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue