summaryrefslogtreecommitdiffstats
path: root/stdout
diff options
context:
space:
mode:
authorDaniel Milde <daniel@milde.cz>2021-02-14 00:21:18 +0100
committerDaniel Milde <daniel@milde.cz>2021-02-14 00:21:18 +0100
commit27ff9ed23f39df03da76b2c2dbe8886102b6a75d (patch)
tree3804467cc15b4e7c5324475a83efd7db16a3aa42 /stdout
parent234b8fdd535846b7e0f525dca17863c18606fd43 (diff)
pass tview.Application to command, tests refactored
Diffstat (limited to 'stdout')
-rw-r--r--stdout/stdout.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/stdout/stdout.go b/stdout/stdout.go
index cf4edaf..04543df 100644
--- a/stdout/stdout.go
+++ b/stdout/stdout.go
@@ -46,6 +46,11 @@ func CreateStdoutUI(output io.Writer, useColors bool, showProgress bool, showApp
return ui
}
+// StartUILoop stub
+func (ui *UI) StartUILoop() error {
+ return nil
+}
+
// ListDevices lists mounted devices and shows their disk usage
func (ui *UI) ListDevices(getter device.DevicesInfoGetter) error {
devices, err := getter.GetDevicesInfo()