mirror of
https://git.sr.ht/~sircmpwn/aerc
synced 2024-11-23 16:42:07 +01:00
caad1b2c06
This reverts commit 0f78f06610c0e8887aba2ae50e99b86477a384b3.
13 lines
203 B
Go
13 lines
203 B
Go
package widgets
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type TabHost interface {
|
|
BeginExCommand(cmd string)
|
|
SetStatus(status string) *StatusMessage
|
|
PushStatus(text string, expiry time.Duration) *StatusMessage
|
|
Beep()
|
|
}
|