fix generic.Stream interface type error

This commit is contained in:
xtaci
2019-09-22 11:03:16 +08:00
parent 8778495915
commit a69b0a90ed
+1 -1
View File
@@ -16,6 +16,6 @@ type Mux interface {
type Stream interface {
io.ReadWriteCloser
ID() int
ID() uint32
RemoteAddr() net.Addr
}