mirror of
https://github.com/crazy-max/diun.git
synced 2025-04-29 04:59:53 +00:00
9 lines
123 B
Go
9 lines
123 B
Go
package terminal
|
|
|
|
type EraseLineMode int
|
|
|
|
const (
|
|
ERASE_LINE_END EraseLineMode = iota
|
|
ERASE_LINE_START
|
|
ERASE_LINE_ALL
|
|
)
|