mirror of
https://github.com/Threnklyn/jira.git
synced 2026-06-07 13:33:32 +02:00
12 lines
126 B
Go
12 lines
126 B
Go
// +build !windows
|
|
|
|
package terminal
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func EraseLine(mode EraseLineMode) {
|
|
fmt.Printf("\x1b[%dK", mode)
|
|
}
|