MCPcopy Create free account
hub / github.com/OctopusDeploy/cli / NewMultiSelectPrompt

Function NewMultiSelectPrompt

test/testutil/fakesurvey.go:78–87  ·  view source on GitHub ↗
(prompt string, help string, options []string, responses []string)

Source from the content-addressed store, hash-verified

76}
77
78func NewMultiSelectPrompt(prompt string, help string, options []string, responses []string) *PA {
79 return &PA{
80 Prompt: &survey.MultiSelect{
81 Message: prompt,
82 Options: options,
83 Help: help,
84 },
85 Answer: responses,
86 }
87}
88
89func NewMultiSelectWithAddPrompt(prompt string, help string, options []string, responses []string) *PA {
90 return &PA{

Calls

no outgoing calls