overflow_probes/auth/client/client.go

12 lines
261 B
Go
Raw Normal View History

2017-12-01 13:01:46 +00:00
package client
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)
}