mirror of
https://github.com/octoleo/restic.git
synced 2024-11-23 21:27:34 +00:00
a376323331
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.
11 lines
274 B
Go
11 lines
274 B
Go
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
|
|
}
|