9 lines
64 B
Go
9 lines
64 B
Go
|
package tx
|
||
|
|
||
|
type Key rune
|
||
|
|
||
|
const (
|
||
|
KeyControlC Key = '\x03'
|
||
|
)
|
||
|
|