quickpassthrough/pkg/menu/ok.go
2023-12-26 19:20:29 +01:00

16 lines
282 B
Go

package menu
import "github.com/nexidian/gocliselect"
// Make a YesNo menu
func Ok(msg string) string {
// Make the menu
menu := gocliselect.NewMenu(msg)
menu.AddItem("OK", "next")
// Display the menu
choice := menu.Display()
// Return the value selected
return choice
}