Files
plumber/internal/events/nop.go
T
codegirl007 b8f1d88d6e
CI / test (pull_request) Successful in 6m17s
Add an in-process post event bus.
2026-08-29 01:06:26 -07:00

10 lines
176 B
Go

package events
import "context"
// Nop is a Publisher used when nothing is subscribed.
type Nop struct{}
// Publish discards ev.
func (Nop) Publish(context.Context, any) {}