mirror of
https://github.com/restic/restic.git
synced 2026-02-03 04:20:45 -05:00
make linter happy
This commit is contained in:
parent
424316e016
commit
d757e39992
1 changed files with 5 additions and 2 deletions
|
|
@ -8,9 +8,12 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
// PosixControlMoveCursorHome moves cursor to the first column
|
||||
PosixControlMoveCursorHome = "\r"
|
||||
PosixControlMoveCursorUp = "\x1b[1A"
|
||||
PosixControlClearLine = "\x1b[2K"
|
||||
// PosixControlMoveCursorUp moves cursor up one line
|
||||
PosixControlMoveCursorUp = "\x1b[1A"
|
||||
// PosixControlClearLine clears the current line
|
||||
PosixControlClearLine = "\x1b[2K"
|
||||
)
|
||||
|
||||
// PosixClearCurrentLine removes all characters from the current line and resets the
|
||||
|
|
|
|||
Loading…
Reference in a new issue