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