9 lines
155 B
Go
9 lines
155 B
Go
package overflow_subscriber
|
|
|
|
type SubscriberHandler interface {
|
|
GetChannel() string
|
|
OnSubscribe(channel string, message SubscribeMessage)
|
|
|
|
Validate()
|
|
}
|