mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 09:58:53 -05:00
12 lines
323 B
Go
12 lines
323 B
Go
package statushooks
|
|
|
|
var NullHooks StatusHooks = &NullStatusHook{}
|
|
|
|
type NullStatusHook struct{}
|
|
|
|
func (*NullStatusHook) SetStatus(string) {}
|
|
func (*NullStatusHook) Hide() {}
|
|
func (*NullStatusHook) Message(...string) {}
|
|
func (*NullStatusHook) Show() {}
|
|
func (*NullStatusHook) Warn(string) {}
|