mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
16 lines
220 B
Go
16 lines
220 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// volumeCmd represents the volume command
|
|
var volumeCmd = &cobra.Command{
|
|
Use: "volume",
|
|
Short: "Manage volumes",
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(volumeCmd)
|
|
}
|