14 lines
264 B
Go
14 lines
264 B
Go
package subscribe
|
|
|
|
import (
|
|
cwf "git.loafle.net/commons_go/websocket_fasthttp"
|
|
oos "git.loafle.net/overflow/overflow_subscriber"
|
|
)
|
|
|
|
type SubscriberHandler interface {
|
|
oos.SubscriberHandler
|
|
|
|
GetSocket(id string) cwf.Socket
|
|
GetSockets() map[string]cwf.Socket
|
|
}
|