mirror of
https://github.com/Threnklyn/jira.git
synced 2026-06-06 21:20:48 +02:00
10 lines
123 B
Go
10 lines
123 B
Go
package terminal
|
|
|
|
type EraseLineMode int
|
|
|
|
const (
|
|
ERASE_LINE_END EraseLineMode = iota
|
|
ERASE_LINE_START
|
|
ERASE_LINE_ALL
|
|
)
|