mirror of
https://github.com/go-i2p/go-sam-go.git
synced 2025-06-07 09:03:18 -04:00
14 lines
182 B
Go
14 lines
182 B
Go
package raw
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/go-i2p/go-sam-go/common"
|
|
)
|
|
|
|
var (
|
|
ds common.Session = &RawSession{}
|
|
dl net.Listener = &RawListener{}
|
|
dc net.PacketConn = &RawConn{}
|
|
)
|