|
@@ -3,12 +3,12 @@ package plugingetter
|
|
|
import "github.com/docker/docker/pkg/plugins"
|
|
|
|
|
|
const (
|
|
|
- // LOOKUP doesn't update RefCount
|
|
|
- LOOKUP = 0
|
|
|
- // ACQUIRE increments RefCount
|
|
|
- ACQUIRE = 1
|
|
|
- // RELEASE decrements RefCount
|
|
|
- RELEASE = -1
|
|
|
+ // Lookup doesn't update RefCount
|
|
|
+ Lookup = 0
|
|
|
+ // Acquire increments RefCount
|
|
|
+ Acquire = 1
|
|
|
+ // Release decrements RefCount
|
|
|
+ Release = -1
|
|
|
)
|
|
|
|
|
|
// CompatPlugin is an abstraction to handle both v2(new) and v1(legacy) plugins.
|