mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
c9a81baa10
Signed-off-by: Alexei Dodon <adodon@cisco.com>
16 lines
198 B
Go
16 lines
198 B
Go
//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)
|
|
}
|
|
}
|