github.com/vincentwoo/docker@v0.7.3-0.20160116130405-82401a4b13c0/daemon/execdriver/windows/update.go (about) 1 // +build windows 2 3 package windows 4 5 import ( 6 "fmt" 7 8 "github.com/docker/docker/daemon/execdriver" 9 ) 10 11 // Update updates resource configs for a container. 12 func (d *Driver) Update(c *execdriver.Command) error { 13 return fmt.Errorf("Windows: Update not implemented") 14 }