github.com/portworx/docker@v1.12.1/plugin/manager_windows.go (about)

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