mirror of
https://github.com/Threnklyn/jira.git
synced 2026-05-19 04:33:28 +02:00
19 lines
346 B
Go
19 lines
346 B
Go
package terminal
|
|
|
|
const (
|
|
KeyArrowLeft = '\x02'
|
|
KeyArrowRight = '\x06'
|
|
KeyArrowUp = '\x10'
|
|
KeyArrowDown = '\x0e'
|
|
KeySpace = ' '
|
|
KeyEnter = '\r'
|
|
KeyBackspace = '\b'
|
|
KeyDelete = '\x7f'
|
|
KeyInterrupt = '\x03'
|
|
KeyEndTransmission = '\x04'
|
|
)
|
|
|
|
func soundBell() {
|
|
Print("\a")
|
|
}
|