package notify import "context" type Noop struct{} func (Noop) Notify(ctx context.Context, event Event) error { return ctx.Err() }