Renamed zot-exporter to zxp and added its image to zot release

Signed-off-by: Alexei Dodon <adodon@cisco.com>
This commit is contained in:
Alexei Dodon
2022-01-17 16:36:13 +02:00
committed by Ramkumar Chinchani
parent cec66f6bc2
commit c9a81baa10
13 changed files with 108 additions and 21 deletions
+16
View File
@@ -0,0 +1,16 @@
//go:build minimal
// +build minimal
package main
import (
"os"
"zotregistry.io/zot/pkg/exporter/cli"
)
func main() {
if err := cli.NewExporterCmd().Execute(); err != nil {
os.Exit(1)
}
}