12 lines
239 B
Go
12 lines
239 B
Go
package overflow_subscriber
|
|
|
|
type SubscriberHandlers struct {
|
|
Channel string
|
|
}
|
|
|
|
func (h *SubscriberHandlers) GetChannel() string {
|
|
return h.Channel
|
|
}
|
|
func (h *SubscriberHandlers) OnSubscribe(channel string, message SubscribeMessage) {
|
|
}
|