mirror of
https://gitea.com/gitea/tea.git
synced 2025-02-18 07:41:17 +01: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
|
||
|
)
|