Move services to plugins/services

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan
2024-01-17 09:52:57 -08:00
parent ce41d1c90a
commit 92d2a5fc02
50 changed files with 70 additions and 70 deletions

View File

@@ -18,7 +18,7 @@ package integration
import (
// Register for linux platforms
_ "github.com/containerd/containerd/v2/plugins/sandbox" // WithInMemoryServices will fail otherwise
_ "github.com/containerd/containerd/v2/services/sandbox" // WithInMemoryServices will fail otherwise
_ "github.com/containerd/containerd/v2/plugins/sandbox" // WithInMemoryServices will fail otherwise
_ "github.com/containerd/containerd/v2/plugins/services/sandbox" // WithInMemoryServices will fail otherwise
_ "github.com/containerd/containerd/v2/snapshots/overlay/plugin"
)