psu/cmd/endpointGroup.go
Juan Carlos Mejías Rodríguez 1ab1333540 Add command to list endpoint groups
2019-08-09 13:29:16 -04:00

16 lines
260 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
// endpointGroupCmd represents the endpoint group command
var endpointGroupCmd = &cobra.Command{
Use: "group",
Short: "Manage endpoint groups",
}
func init() {
endpointCmd.AddCommand(endpointGroupCmd)
}