2016-10-06 17:09:54 +03:00
|
|
|
// +build windows
|
2016-05-16 18:50:55 +03:00
|
|
|
|
|
|
|
package plugin
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2016-08-26 20:02:38 +03:00
|
|
|
"github.com/docker/docker/plugin/v2"
|
2016-10-06 17:09:54 +03:00
|
|
|
specs "github.com/opencontainers/runtime-spec/specs-go"
|
2016-05-16 18:50:55 +03:00
|
|
|
)
|
|
|
|
|
2016-12-01 22:36:56 +03:00
|
|
|
func (pm *Manager) enable(p *v2.Plugin, c *controller, force bool) error {
|
2016-05-16 18:50:55 +03:00
|
|
|
return fmt.Errorf("Not implemented")
|
|
|
|
}
|
|
|
|
|
2016-08-26 20:02:38 +03:00
|
|
|
func (pm *Manager) initSpec(p *v2.Plugin) (*specs.Spec, error) {
|
2016-05-16 18:50:55 +03:00
|
|
|
return nil, fmt.Errorf("Not implemented")
|
|
|
|
}
|
|
|
|
|
2016-12-01 22:36:56 +03:00
|
|
|
func (pm *Manager) disable(p *v2.Plugin, c *controller) error {
|
2016-05-16 18:50:55 +03:00
|
|
|
return fmt.Errorf("Not implemented")
|
|
|
|
}
|
2016-06-15 20:39:33 +03:00
|
|
|
|
2016-08-26 20:02:38 +03:00
|
|
|
func (pm *Manager) restore(p *v2.Plugin) error {
|
2016-06-15 20:39:33 +03:00
|
|
|
return fmt.Errorf("Not implemented")
|
|
|
|
}
|
2016-07-01 21:36:11 +03:00
|
|
|
|
|
|
|
// Shutdown plugins
|
|
|
|
func (pm *Manager) Shutdown() {
|
|
|
|
}
|