aboutsummaryrefslogtreecommitdiffstats
path: root/app/tabhost.go
blob: 9a206084024070f1389cb82b751fb4e7827046e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()
}