2016-05-16 18:50:55 +03:00
|
|
|
// +build windows,experimental
|
|
|
|
|
|
|
|
package plugin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2016-08-17 19:38:34 +03:00
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
2016-05-16 18:50:55 +03:00
|
|
|
)
|
|
|
|
|
2016-08-09 21:49:28 +03:00
|
|
|
func (pm *Manager) enable(p *plugin, force bool) error {
|
2016-05-16 18:50:55 +03:00
|
|
|
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 20:39:33 +03:00
|
|
|
|
|
|
|
func (pm *Manager) restore(p *plugin) error {
|
|
|
|
return fmt.Errorf("Not implemented")
|
|
|
|
}
|
2016-07-01 21:36:11 +03:00
|
|
|
|
|
|
|
// Shutdown plugins
|
|
|
|
func (pm *Manager) Shutdown() {
|
|
|
|
}
|