10 lines
176 B
Go
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) {}
|