| package daemon | |
| import ( | |
| "github.com/moby/moby/api/types/container" | |
| libcontainerdtypes "github.com/moby/moby/v2/daemon/internal/libcontainerd/types" | |
| ) | |
| func toContainerdResources(resources container.Resources) *libcontainerdtypes.Resources { | |
| // We don't support update, so do nothing | |
| return nil | |
| } |