0
0
forked from toolshed/abra
Files
abra/vendor/github.com/docker/go-connections/sockets/unix_socket_windows.go
2025-08-12 05:17:15 +00:00

8 lines
119 B
Go

package sockets
import "net"
func listenUnix(path string) (net.Listener, error) {
return net.Listen("unix", path)
}