github.com/kaisenlinux/docker.io@v0.0.0-20230510090727-ea55db55fac7/engine/plugin/manager_windows.go (about) 1 package plugin // import "github.com/docker/docker/plugin" 2 3 import ( 4 "fmt" 5 6 v2 "github.com/docker/docker/plugin/v2" 7 specs "github.com/opencontainers/runtime-spec/specs-go" 8 ) 9 10 func (pm *Manager) enable(p *v2.Plugin, c *controller, force bool) error { 11 return fmt.Errorf("Not implemented") 12 } 13 14 func (pm *Manager) initSpec(p *v2.Plugin) (*specs.Spec, error) { 15 return nil, fmt.Errorf("Not implemented") 16 } 17 18 func (pm *Manager) disable(p *v2.Plugin, c *controller) error { 19 return fmt.Errorf("Not implemented") 20 } 21 22 func (pm *Manager) restore(p *v2.Plugin, c *controller) error { 23 return fmt.Errorf("Not implemented") 24 } 25 26 // Shutdown plugins 27 func (pm *Manager) Shutdown() { 28 } 29 30 func recursiveUnmount(_ string) error { 31 return nil 32 }