From a2768f19d9c4fd58d623c30f40ccd9cf25ef79cb Mon Sep 17 00:00:00 2001 From: Wei Fu Date: Sat, 24 Feb 2024 20:45:17 +0800 Subject: [PATCH] plugins/sandbox: move local plugin into services Signed-off-by: Wei Fu --- plugins/sandbox/controller.go | 1 - plugins/{sandbox/store.go => services/sandbox/store_local.go} | 0 2 files changed, 1 deletion(-) rename plugins/{sandbox/store.go => services/sandbox/store_local.go} (100%) diff --git a/plugins/sandbox/controller.go b/plugins/sandbox/controller.go index fe2dcb4e7..d387ee2d0 100644 --- a/plugins/sandbox/controller.go +++ b/plugins/sandbox/controller.go @@ -46,7 +46,6 @@ func init() { Requires: []plugin.Type{ plugins.RuntimePluginV2, plugins.EventPlugin, - plugins.SandboxStorePlugin, }, InitFn: func(ic *plugin.InitContext) (interface{}, error) { shimPlugin, err := ic.GetByID(plugins.RuntimePluginV2, "shim") diff --git a/plugins/sandbox/store.go b/plugins/services/sandbox/store_local.go similarity index 100% rename from plugins/sandbox/store.go rename to plugins/services/sandbox/store_local.go