overflow_probes/client/probe/client.go

12 lines
260 B
Go
Raw Normal View History

2017-12-02 03:13:08 +00:00
package probe
2017-12-01 16:17:44 +00:00
import (
cwfc "git.loafle.net/commons_go/websocket_fasthttp/client"
oogwc "git.loafle.net/overflow/overflow_gateway_websocket/client"
)
func NewClient(ch oogwc.ClientHandler, sb cwfc.SocketBuilder) oogwc.Client {
return oogwc.New(ch, sb)
}