mirror of
https://github.com/project-zot/zot.git
synced 2026-06-16 20:38:08 +08:00
f58597ade9
Signed-off-by: Alexei Dodon <adodon@cisco.com>
14 lines
164 B
Go
14 lines
164 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
cli "zotregistry.io/zot/pkg/cli/server"
|
|
)
|
|
|
|
func main() {
|
|
if err := cli.NewServerRootCmd().Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|