1
0
mirror of https://github.com/moby/moby.git synced 2025-07-27 20:02:03 +03:00

Move libnetwork to daemon/libnetwork

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan
2025-07-14 09:25:23 -07:00
parent f05652867d
commit 7a720df61f
1048 changed files with 615 additions and 615 deletions

View File

@ -16,14 +16,14 @@ import (
"github.com/docker/docker/api/types/container"
"github.com/docker/docker/api/types/network"
"github.com/docker/docker/daemon/libnetwork/driverapi"
remoteapi "github.com/docker/docker/daemon/libnetwork/drivers/remote/api"
"github.com/docker/docker/daemon/libnetwork/ipamapi"
remoteipam "github.com/docker/docker/daemon/libnetwork/ipams/remote/api"
"github.com/docker/docker/daemon/libnetwork/netlabel"
"github.com/docker/docker/integration-cli/cli"
"github.com/docker/docker/integration-cli/daemon"
"github.com/docker/docker/internal/nlwrap"
"github.com/docker/docker/libnetwork/driverapi"
remoteapi "github.com/docker/docker/libnetwork/drivers/remote/api"
"github.com/docker/docker/libnetwork/ipamapi"
remoteipam "github.com/docker/docker/libnetwork/ipams/remote/api"
"github.com/docker/docker/libnetwork/netlabel"
"github.com/docker/docker/pkg/plugins"
"github.com/docker/docker/pkg/stringid"
"github.com/docker/docker/runconfig"