server-go/socket/client.go

7 lines
134 B
Go
Raw Normal View History

2018-04-11 09:27:16 +00:00
package socket
type Client interface {
Connect() (readChan <-chan []byte, writeChan chan<- []byte, err error)
Disconnect() error
}