This commit is contained in:
zhouyuyan
2017-08-22 16:54:39 +08:00
parent b2f5174fc5
commit 38ec192621
2 changed files with 24 additions and 1 deletions

15
broker/client.go Normal file
View File

@@ -0,0 +1,15 @@
package broker
import "net"
type client struct {
broker Broker
conn net.Conn
clientID []byte
username []byte
password []byte
}
func init() {
}