mirror of
https://github.com/Threnklyn/jira.git
synced 2026-06-01 18:58:26 +02:00
24 lines
285 B
Go
24 lines
285 B
Go
package main
|
|
|
|
import "github.com/AlecAivazis/survey"
|
|
|
|
func main() {
|
|
color := ""
|
|
prompt := &survey.Select{
|
|
Message: "Choose a color:",
|
|
Options: []string{
|
|
"a",
|
|
"b",
|
|
"c",
|
|
"d",
|
|
"e",
|
|
"f",
|
|
"g",
|
|
"h",
|
|
"i",
|
|
"j",
|
|
},
|
|
}
|
|
survey.AskOne(prompt, &color, nil)
|
|
}
|