cli/tx/aes.go

14 lines
159 B
Go
Raw Normal View History

2024-06-05 11:45:03 +03:00
package tx
import "surdeus.su/core/cli/aes"
2024-06-05 11:45:03 +03:00
type Key rune
const (
KeyControlC Key = '\x03'
KeyESC = aes.KeyESC
KeyReturn = '\r'
KeyEnter = KeyReturn
2024-06-05 11:45:03 +03:00
)