2016-05-16 11:50:55 -04:00
|
|
|
// +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")
|
|
|
|
}
|
2016-06-15 13:39:33 -04:00
|
|
|
|
|
|
|
func (pm *Manager) restore(p *plugin) error {
|
|
|
|
return fmt.Errorf("Not implemented")
|
|
|
|
}
|
2016-07-01 14:36:11 -04:00
|
|
|
|
|
|
|
// Shutdown plugins
|
|
|
|
func (pm *Manager) Shutdown() {
|
|
|
|
}
|