7 lines
116 B
Go
7 lines
116 B
Go
|
package overflow_subscriber
|
||
|
|
||
|
type SubscriberHandler interface {
|
||
|
GetChannel() string
|
||
|
OnSubscribe(payload string)
|
||
|
}
|