mirror of
https://github.com/cbeuw/Cloak.git
synced 2024-11-09 19:10:44 +00:00
9 lines
97 B
Go
9 lines
97 B
Go
package multiplex
|
|
|
|
import "io"
|
|
|
|
type recvBuffer interface {
|
|
io.ReadCloser
|
|
Write(Frame) error
|
|
}
|