aboutsummaryrefslogtreecommitdiffstats
path: root/app/tabhost.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/tabhost.go')
-rw-r--r--app/tabhost.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/tabhost.go b/app/tabhost.go
deleted file mode 100644
index 9a206084..00000000
--- a/app/tabhost.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package app
-
-import (
- "time"
-)
-
-type TabHost interface {
- BeginExCommand(cmd string)
- UpdateStatus()
- SetError(err string)
- PushStatus(text string, expiry time.Duration) *StatusMessage
- PushError(text string) *StatusMessage
- PushSuccess(text string) *StatusMessage
- Beep()
-}