aes.go 159 B

12345678910111213
  1. package tx
  2. import "surdeus.su/core/cli/aes"
  3. type Key rune
  4. const (
  5. KeyControlC Key = '\x03'
  6. KeyESC = aes.KeyESC
  7. KeyReturn = '\r'
  8. KeyEnter = KeyReturn
  9. )