This moves the types for the `engine-api` repo to the existing types package. Signed-off-by: Michael Crosby <crosbymichael@gmail.com> Upstream-commit: 91e197d614547f0202e6ae9b8a24d88ee131d950 Component: engine
14 lines
264 B
Go
14 lines
264 B
Go
// +build windows
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/api/types/container"
|
|
"github.com/docker/docker/libcontainerd"
|
|
)
|
|
|
|
func toContainerdResources(resources container.Resources) libcontainerd.Resources {
|
|
var r libcontainerd.Resources
|
|
return r
|
|
}
|