name MultiSelect parameters in interface
I wanted the parameters to show up in my autocomplete
This commit is contained in:
parent
cd65409328
commit
7d470c4df4
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ import (
|
|||
//go:generate moq -rm -out prompter_mock.go . Prompter
|
||||
type Prompter interface {
|
||||
Select(string, string, []string) (int, error)
|
||||
MultiSelect(string, []string, []string) ([]int, error)
|
||||
MultiSelect(prompt string, defaults []string, options []string) ([]int, error)
|
||||
Input(string, string) (string, error)
|
||||
InputHostname() (string, error)
|
||||
Password(string) (string, error)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue