neoneo-go/pkg/pubsub/sub.go

7 lines
81 B
Go
Raw Normal View History

2019-02-25 22:44:14 +00:00
package pubsub
type Subscriber interface {
Topics() []EventType
Emit(Event)
}