mirror of
https://github.com/go-i2p/go-sam-go.git
synced 2025-06-16 13:54:42 -04:00
12 lines
203 B
Go
12 lines
203 B
Go
// package sam3 wraps the original sam3 API from github.com/go-i2p/sam3
|
|
package sam3
|
|
|
|
import (
|
|
"github.com/go-i2p/go-sam-go/stream"
|
|
)
|
|
|
|
// Implements net.Conn
|
|
type SAMConn struct {
|
|
*stream.StreamConn
|
|
}
|