Leon4gr45's picture
Upload folder using huggingface_hub (part 6)
d6f631f verified
Raw
History Blame Contribute Delete
484 Bytes
package noop
import (
"context"
"github.com/openmeterio/openmeter/openmeter/notification"
)
var _ notification.EventHandler = (*Handler)(nil)
type Handler struct{}
func (h Handler) Dispatch(_ context.Context, _ *notification.Event) error {
return nil
}
func (h Handler) Reconcile(_ context.Context) error {
return nil
}
func (h Handler) Start() error {
return nil
}
func (h Handler) Close() error {
return nil
}
func New() (*Handler, error) {
return &Handler{}, nil
}