Files
virtual-kubelet/vendor/github.com/hyperhq/hypercli/daemon/execdriver/windows/update.go
2017-12-05 17:53:58 -06:00

15 lines
268 B
Go

// +build windows
package windows
import (
"fmt"
"github.com/hyperhq/hypercli/daemon/execdriver"
)
// Update updates resource configs for a container.
func (d *Driver) Update(c *execdriver.Command) error {
return fmt.Errorf("Windows: Update not implemented")
}