blob: 7c502cb27e435a61f33e48230fe28aadbc561b25 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package widgets
import (
"time"
)
type TabHost interface {
BeginExCommand()
SetStatus(status string) *StatusMessage
PushStatus(text string, expiry time.Duration) *StatusMessage
}
|