12 lines
185 B
Go
12 lines
185 B
Go
|
package widgets
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type TabHost interface {
|
||
|
BeginExCommand()
|
||
|
SetStatus(status string) *StatusMessage
|
||
|
PushStatus(text string, expiry time.Duration) *StatusMessage
|
||
|
}
|