This commit is contained in:
Asim Aslam 2018-11-14 19:49:04 +00:00
parent c6a2c8de6c
commit 881cb570d5

View File

@ -11,11 +11,11 @@ type Message struct {
} }
type Socket interface { type Socket interface {
Local() string
Remote() string
Recv(*Message) error Recv(*Message) error
Send(*Message) error Send(*Message) error
Close() error Close() error
Local() string
Remote() string
} }
type Client interface { type Client interface {