ui, termstatus: Move WrapStdio

Saves some imports. ui still needs to import ui/termstatus from
message.go.
This commit is contained in:
greatroar
2024-05-21 10:51:05 +02:00
parent 0b56214473
commit 66d03c797e
3 changed files with 4 additions and 7 deletions

View File

@@ -1,15 +1,13 @@
package ui
package termstatus
import (
"bytes"
"io"
"github.com/restic/restic/internal/ui/termstatus"
)
// WrapStdio returns line-buffering replacements for os.Stdout and os.Stderr.
// On Close, the remaining bytes are written, followed by a line break.
func WrapStdio(term *termstatus.Terminal) (stdout, stderr io.WriteCloser) {
func WrapStdio(term *Terminal) (stdout, stderr io.WriteCloser) {
return newLineWriter(term.Print), newLineWriter(term.Error)
}

View File

@@ -1,4 +1,4 @@
package ui
package termstatus
import (
"strings"