github.com/helmwave/helmwave@v0.36.4-0.20240509190856-b35563eba4c6/pkg/hooks/interface.go (about)

     1  package hooks
     2  
     3  import (
     4  	"context"
     5  
     6  	log "github.com/sirupsen/logrus"
     7  )
     8  
     9  type Hook interface {
    10  	Run(context.Context) error
    11  	Log() *log.Entry
    12  }