Add go completion for odo url delete (#980)

Fixes: #938
This commit is contained in:
Georgios Andrianakis
2018-11-16 11:56:08 +02:00
committed by GitHub
parent dc9707a998
commit 87d30e7416
2 changed files with 24 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ package cmd
import (
"fmt"
"github.com/redhat-developer/odo/pkg/odo/genericclioptions"
"github.com/redhat-developer/odo/pkg/odo/util/completion"
"os"
"strings"
@@ -200,4 +201,6 @@ func init() {
addComponentFlag(urlCreateCmd)
rootCmd.AddCommand(urlCmd)
completion.RegisterCommandHandler(urlDeleteCmd, completion.URLCompletionHandler)
}