Files
2020-12-01 21:19:37 +08:00

12 lines
136 B
Go

package Service
import "net"
type MagicClient struct {
cid string
encode, decode func([]byte) []byte
authed bool
conn net.Conn
}