moby/libnetwork/drivers_unsupported.go
Sebastiaan van Stijn 77c2613d3a
libnetwork: fix some missing imports on macOS and FreeBSD
This was introduced in 1980deffae, which
changed the implementation, but forgot to update imports in these.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2023-08-29 16:55:44 +02:00

9 lines
243 B
Go

//go:build !freebsd && !linux && !windows
package libnetwork
import "github.com/docker/docker/libnetwork/driverapi"
func registerNetworkDrivers(r driverapi.Registerer, driverConfig func(string) map[string]interface{}) error {
return nil
}