manager_windows.go 724 B

1234567891011121314151617181920212223242526272829303132
  1. package plugin // import "github.com/docker/docker/plugin"
  2. import (
  3. "fmt"
  4. v2 "github.com/docker/docker/plugin/v2"
  5. specs "github.com/opencontainers/runtime-spec/specs-go"
  6. )
  7. func (pm *Manager) enable(p *v2.Plugin, c *controller, force bool) error {
  8. return fmt.Errorf("Not implemented")
  9. }
  10. func (pm *Manager) initSpec(p *v2.Plugin) (*specs.Spec, error) {
  11. return nil, fmt.Errorf("Not implemented")
  12. }
  13. func (pm *Manager) disable(p *v2.Plugin, c *controller) error {
  14. return fmt.Errorf("Not implemented")
  15. }
  16. func (pm *Manager) restore(p *v2.Plugin, c *controller) error {
  17. return fmt.Errorf("Not implemented")
  18. }
  19. // Shutdown plugins
  20. func (pm *Manager) Shutdown() {
  21. }
  22. func recursiveUnmount(_ string) error {
  23. return nil
  24. }