diff --git a/internal/prompter/prompter.go b/internal/prompter/prompter.go index cd90fcd2d..df6819e1f 100644 --- a/internal/prompter/prompter.go +++ b/internal/prompter/prompter.go @@ -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)