MCPcopy Create free account
hub / github.com/algolia/cli / AskInputQuestion

Function AskInputQuestion

pkg/ask/ask.go:71–81  ·  view source on GitHub ↗
(
	message string,
	storage *string,
	defaultValue string,
	opts ...survey.AskOpt,
)

Source from the content-addressed store, hash-verified

69}
70
71func AskInputQuestion(
72 message string,
73 storage *string,
74 defaultValue string,
75 opts ...survey.AskOpt,
76) error {
77 return survey.AskOne(&survey.Input{
78 Message: message,
79 Default: defaultValue,
80 }, storage, opts...)
81}
82
83func AskInputQuestionWithSuggestion(
84 message string,

Callers 5

AskSynonymIDQuestionFunction · 0.92
AskExportConfigFunction · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected