mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-21 16:00:13 -04:00
10 lines
121 B
Go
10 lines
121 B
Go
package statushooks
|
|
|
|
type StatusHooks interface {
|
|
SetStatus(string)
|
|
Show()
|
|
Warn(string)
|
|
Hide()
|
|
Message(...string)
|
|
}
|