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

Function NewSelectPrompt

test/testutil/fakesurvey.go:55–64  ·  view source on GitHub ↗
(prompt string, help string, options []string, response string)

Source from the content-addressed store, hash-verified

53}
54
55func NewSelectPrompt(prompt string, help string, options []string, response string) *PA {
56 return &PA{
57 Prompt: &survey.Select{
58 Message: prompt,
59 Options: options,
60 Help: help,
61 },
62 Answer: response,
63 }
64}
65
66func NewSelectPromptWithDefault(prompt string, help string, options []string, def string, response string) *PA {
67 return &PA{

Calls

no outgoing calls