mirror of
https://github.com/strongdm/comply
synced 2024-11-05 23:45:25 +00:00
11 lines
234 B
Go
11 lines
234 B
Go
// +build windows
|
|
|
|
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.
|
|
KeyBackspace rune = 8
|
|
)
|