13 lines
159 B
Go
13 lines
159 B
Go
package tx
|
|
|
|
import "surdeus.su/core/cli/aes"
|
|
|
|
type Key rune
|
|
|
|
const (
|
|
KeyControlC Key = '\x03'
|
|
KeyESC = aes.KeyESC
|
|
KeyReturn = '\r'
|
|
KeyEnter = KeyReturn
|
|
)
|
|
|