mirror of
https://github.com/containers/podman.git
synced 2025-11-29 17:48:05 +08:00
Just to make sure everything still works ahead of monorepo move. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
8 lines
119 B
Go
8 lines
119 B
Go
package sockets
|
|
|
|
import "net"
|
|
|
|
func listenUnix(path string) (net.Listener, error) {
|
|
return net.Listen("unix", path)
|
|
}
|