2017-08-03 22:24:02 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
const (
|
|
|
|
ExporterImage = "image"
|
|
|
|
ExporterLocal = "local"
|
2017-12-13 00:59:06 +00:00
|
|
|
ExporterOCI = "oci"
|
2017-08-03 22:24:02 +00:00
|
|
|
|
|
|
|
exporterLocalOutputDir = "output"
|
2017-12-13 00:59:06 +00:00
|
|
|
exporterOCIDestination = "output"
|
2017-08-03 22:24:02 +00:00
|
|
|
)
|