mirror of https://github.com/docker/docs.git
				
				
				
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			392 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			392 B
		
	
	
	
		
			Go
		
	
	
	
| // +build windows,experimental
 | |
| 
 | |
| package plugin
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 
 | |
| 	"github.com/opencontainers/specs/specs-go"
 | |
| )
 | |
| 
 | |
| func (pm *Manager) enable(p *plugin) error {
 | |
| 	return fmt.Errorf("Not implemented")
 | |
| }
 | |
| 
 | |
| func (pm *Manager) initSpec(p *plugin) (*specs.Spec, error) {
 | |
| 	return nil, fmt.Errorf("Not implemented")
 | |
| }
 | |
| 
 | |
| func (pm *Manager) disable(p *plugin) error {
 | |
| 	return fmt.Errorf("Not implemented")
 | |
| }
 |