mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2025-01-19 19:37:24 +00:00
7 lines
81 B
Go
7 lines
81 B
Go
|
package pubsub
|
||
|
|
||
|
type Subscriber interface {
|
||
|
Topics() []EventType
|
||
|
Emit(Event)
|
||
|
}
|