mirror of
https://github.com/pyihe/go-pkg.git
synced 2025-10-05 07:57:02 +08:00
13 lines
158 B
Go
13 lines
158 B
Go
package protocol
|
|
|
|
import "net"
|
|
|
|
type Client interface {
|
|
Close()
|
|
}
|
|
|
|
type Protocol interface {
|
|
NewClient(conn net.Conn) Client
|
|
IOLoop(client Client) error
|
|
}
|