mirror of
https://github.com/crazy-max/diun.git
synced 2025-03-12 18:36:51 +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
|
|
)
|