cli/aes/es.go

27 lines
290 B
Go

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"
)