kubekey/pkg/core/hook/handler.go
2021-11-01 18:15:33 +08:00

8 lines
109 B
Go

package hook
func Call(hook Interface) error {
err := hook.Catch(hook.Try())
hook.Finally()
return err
}