psu/cmd/endpointGroup.go

16 lines
260 B
Go
Raw Normal View History

2019-08-09 17:29:16 +00:00
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)
}