Files
next.orly.dev/pkg/interfaces/publisher/publisher.go
2025-09-02 20:32:53 +01:00

15 lines
174 B
Go

package publisher
import (
"encoders.orly/event"
"interfaces.orly/typer"
)
type I interface {
typer.T
Deliver(ev *event.E)
Receive(msg typer.T)
}
type Publishers []I