summaryrefslogtreecommitdiff
path: root/daemon/update_windows.go
blob: cefbe919a5407f7f187eaa1c5b31ebd9e1c93239 (plain)
1
2
3
4
5
6
7
8
9
10
11
package daemon // import "github.com/docker/docker/daemon"

import (
	"github.com/docker/docker/api/types/container"
	libcontainerdtypes "github.com/docker/docker/libcontainerd/types"
)

func toContainerdResources(resources container.Resources) *libcontainerdtypes.Resources {
	// We don't support update, so do nothing
	return nil
}