mirror of
https://github.com/elyby/chrly.git
synced 2024-11-20 04:03:11 +05:30
6 lines
97 B
Go
6 lines
97 B
Go
|
package eventsubscribers
|
||
|
|
||
|
type Subscriber interface {
|
||
|
Subscribe(topic string, fn interface{})
|
||
|
}
|