zotregistry.io/zot@v1.4.4-0.20231124084042-02a8ed785457/cmd/zxp/main.go (about) 1 //go:build !metrics 2 // +build !metrics 3 4 package main 5 6 import ( 7 "os" 8 9 "zotregistry.io/zot/pkg/exporter/cli" 10 ) 11 12 func main() { 13 if err := cli.NewExporterCmd().Execute(); err != nil { 14 os.Exit(1) 15 } 16 }