mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
12 lines
301 B
Go
12 lines
301 B
Go
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
|
|
}
|