mirror of
https://github.com/restic/restic.git
synced 2025-12-11 18:47:50 +00:00
restore: print JSON versions of errors in --json mode
Previously, they were printed as freeform text. This also adds a ui.Terminal interface to make writing tests easier and also adds a few tests.
This commit is contained in:
10
internal/ui/terminal.go
Normal file
10
internal/ui/terminal.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package ui
|
||||
|
||||
// Terminal is used to write messages and display status lines which can be
|
||||
// updated. See termstatus.Terminal for a concrete implementation.
|
||||
type Terminal interface {
|
||||
Print(line string)
|
||||
Error(line string)
|
||||
SetStatus(lines []string)
|
||||
CanUpdateStatus() bool
|
||||
}
|
||||
Reference in New Issue
Block a user