-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
53 lines (47 loc) · 860 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package main
import (
"fmt"
"github.com/manifoldco/promptui"
"os"
)
func main() {
args := os.Args
if len(args) < 2 {
fmt.Println("Please run with one of the types: select, prompt, confirm")
return
}
switch args[1] {
case "select":
runSelect()
case "prompt":
runPrompt()
case "confirm":
runConfirm()
}
}
func runSelect() {
s := &promptui.Select{
Items: []string{"One", "Two", "Three"},
}
i, result, err := s.Run()
fmt.Println("Error:", err)
fmt.Println("Result:", result)
fmt.Println("Index:", i)
}
func runPrompt() {
p := &promptui.Prompt{
Label: "Prompt",
}
result, err := p.Run()
fmt.Println("Error:", err)
fmt.Println("Result:", result)
}
func runConfirm() {
p := &promptui.Prompt{
Label: "Confirm",
IsConfirm: true,
}
result, err := p.Run()
fmt.Println("Error:", err)
fmt.Println("Result:", result)
}