mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
10 lines
250 B
Go
10 lines
250 B
Go
//go:build !freebsd && !linux && !windows
|
|
|
|
package libnetwork
|
|
|
|
import "github.com/docker/docker/daemon/libnetwork/driverapi"
|
|
|
|
func registerNetworkDrivers(r driverapi.Registerer, driverConfig func(string) map[string]interface{}) error {
|
|
return nil
|
|
}
|