0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2024-12-30 22:34:13 -05:00
zot/cmd/exporter/main.go
Ramkumar Chinchani 96226af869 move references to zotregistry.io and project-zot
Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
2021-12-05 10:52:27 -08:00

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)
}
}