mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
13 lines
222 B
Go
13 lines
222 B
Go
//go:build !linux && !freebsd
|
|
|
|
package docker
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
)
|
|
|
|
func newUnixListener(path string, gid int) (net.Listener, string, error) {
|
|
return nil, "", errors.New("unix sockets require Linux or FreeBSD")
|
|
}
|