mirror of
https://github.com/go-i2p/go-sam-go.git
synced 2025-06-07 17:05:04 -04:00
14 lines
194 B
Go
14 lines
194 B
Go
package stream
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/go-i2p/go-sam-go/common"
|
|
)
|
|
|
|
var (
|
|
ss common.Session = &StreamSession{}
|
|
sl net.Listener = &StreamListener{}
|
|
sc net.Conn = &StreamConn{}
|
|
)
|