mirror of
https://github.com/strongdm/comply
synced 2024-11-06 07:55:26 +00:00
11 lines
188 B
Go
11 lines
188 B
Go
|
// +build !windows
|
||
|
|
||
|
package promptui
|
||
|
|
||
|
import "github.com/chzyer/readline"
|
||
|
|
||
|
var (
|
||
|
// KeyBackspace is the default key for deleting input text.
|
||
|
KeyBackspace rune = readline.CharBackspace
|
||
|
)
|