mirror of
https://git.sr.ht/~sircmpwn/aerc
synced 2024-11-23 16:42:07 +01:00
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
|
|
}
|