manager_windows.go 534 B

1234567891011121314151617181920212223242526272829
  1. // +build windows,experimental
  2. package plugin
  3. import (
  4. "fmt"
  5. "github.com/opencontainers/specs/specs-go"
  6. )
  7. func (pm *Manager) enable(p *plugin) error {
  8. return fmt.Errorf("Not implemented")
  9. }
  10. func (pm *Manager) initSpec(p *plugin) (*specs.Spec, error) {
  11. return nil, fmt.Errorf("Not implemented")
  12. }
  13. func (pm *Manager) disable(p *plugin) error {
  14. return fmt.Errorf("Not implemented")
  15. }
  16. func (pm *Manager) restore(p *plugin) error {
  17. return fmt.Errorf("Not implemented")
  18. }
  19. // Shutdown plugins
  20. func (pm *Manager) Shutdown() {
  21. }