11 lines
80 B
Go
11 lines
80 B
Go
package sni
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type readWriter struct {
|
|
io.Reader
|
|
io.Writer
|
|
}
|