14 lines
198 B
Go
14 lines
198 B
Go
package tunnel
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"github.com/micro/go-micro/transport"
|
|
)
|
|
|
|
func newLink(s transport.Socket) *link {
|
|
return &link{
|
|
Socket: s,
|
|
id: uuid.New().String(),
|
|
}
|
|
}
|