1
0
mirror of https://github.com/strongdm/comply synced 2024-09-15 17:24:37 +00:00
comply/vendor/github.com/manifoldco/promptui/keycodes_windows.go

11 lines
234 B
Go
Raw Normal View History

// +build windows
2018-05-15 21:13:11 +00:00
package promptui
// source: https://msdn.microsoft.com/en-us/library/aa243025(v=vs.60).aspx
var (
// KeyBackspace is the default key for deleting input text inside a command line prompt.
2018-05-15 21:13:11 +00:00
KeyBackspace rune = 8
)