builtin_unix.go 253 B

123456789101112
  1. //go:build linux || freebsd || darwin
  2. package builtin
  3. import (
  4. "github.com/docker/docker/libnetwork/ipamapi"
  5. )
  6. // Register registers the built-in ipam service with libnetwork.
  7. func Register(r ipamapi.Registerer) error {
  8. return registerBuiltin(r)
  9. }