mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
12 lines
137 B
Go
12 lines
137 B
Go
package utp
|
|
|
|
import "net"
|
|
|
|
type packetConnNopCloser struct {
|
|
net.PacketConn
|
|
}
|
|
|
|
func (packetConnNopCloser) Close() error {
|
|
return nil
|
|
}
|