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

14 lines
165 B
Go

package main
import (
"os"
cli "zotregistry.dev/zot/pkg/cli/server"
)
func main() {
if err := cli.NewServerRootCmd().Execute(); err != nil {
os.Exit(1)
}
}