mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
10 lines
121 B
Go
10 lines
121 B
Go
package statushooks
|
|
|
|
type StatusHooks interface {
|
|
SetStatus(string)
|
|
Show()
|
|
Warn(string)
|
|
Hide()
|
|
Message(...string)
|
|
}
|