Tizen_4.0 base
[platform/upstream/docker-engine.git] / plugin / manager_windows.go
1 // +build windows
2
3 package plugin
4
5 import (
6         "fmt"
7
8         "github.com/docker/docker/plugin/v2"
9         specs "github.com/opencontainers/runtime-spec/specs-go"
10 )
11
12 func (pm *Manager) enable(p *v2.Plugin, c *controller, force bool) error {
13         return fmt.Errorf("Not implemented")
14 }
15
16 func (pm *Manager) initSpec(p *v2.Plugin) (*specs.Spec, error) {
17         return nil, fmt.Errorf("Not implemented")
18 }
19
20 func (pm *Manager) disable(p *v2.Plugin, c *controller) error {
21         return fmt.Errorf("Not implemented")
22 }
23
24 func (pm *Manager) restore(p *v2.Plugin) error {
25         return fmt.Errorf("Not implemented")
26 }
27
28 // Shutdown plugins
29 func (pm *Manager) Shutdown() {
30 }