Andrei Aaron ce4924f841
refactor: rename go module from zotregistry.io/zot to zotregistry.dev/zot ()
Signed-off-by: Andrei Aaron <aaaron@luxoft.com>
2024-01-31 20:34:07 -08:00

17 lines
198 B
Go

//go:build search
// +build search
package main
import (
"os"
cli "zotregistry.dev/zot/pkg/cli/client"
)
func main() {
if err := cli.NewCliRootCmd().Execute(); err != nil {
os.Exit(1)
}
}