zotregistry.dev/zot@v1.4.4-0.20240314164342-eec277e14d20/cmd/zxp/main.go (about)

     1  //go:build !metrics
     2  // +build !metrics
     3  
     4  package main
     5  
     6  import (
     7  	"os"
     8  
     9  	"zotregistry.dev/zot/pkg/exporter/cli"
    10  )
    11  
    12  func main() {
    13  	if err := cli.NewExporterCmd().Execute(); err != nil {
    14  		os.Exit(1)
    15  	}
    16  }