mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-27 23:31:35 +00:00
7 lines
81 B
Go
7 lines
81 B
Go
|
package pubsub
|
||
|
|
||
|
type Subscriber interface {
|
||
|
Topics() []EventType
|
||
|
Emit(Event)
|
||
|
}
|