mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-09 08:26:47 +00:00
The mac reference was incorrect, it should be darwin. Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
11 lines
153 B
Go
11 lines
153 B
Go
// +build darwin
|
|
|
|
package cninetwork
|
|
|
|
import "github.com/vishvananda/netlink"
|
|
|
|
func linkToNetDev(link netlink.Link) (Dev, error) {
|
|
|
|
return Dev{}, nil
|
|
}
|