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