cli/aes/es.go

28 lines
290 B
Go
Raw Normal View History

2024-06-05 14:18:54 +03:00
package aes
const (
// Start.
ESC = "\x1B"
// Control sequence introducer.
CSI = ESC+"["
// Device control string.
DCS = ESC+"P"
// Operating system command.
OSC = ESC+"]"
)
const (
BEL = "\a"
BS = "\b"
HT = "\t"
LF = "\n"
VT = "\v"
FF = "\f"
CR = "\r"
DEL = "\x7F"
)