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