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