vRp.CD2g_test/server/internal/v2/reactor/reactor.go

10 lines
127 B
Go

package reactor
type Reactor[P comparable] struct {
chs []chan P
}
func (el *Reactor[P]) Send(producer P, event Event) {
}