mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
4896adad1b
zot: registry server zli: zot cli to interact with the zot registry zui: zot ui (proposed) zb: zot benchmark (proposed) Signed-off-by: Ramkumar Chinchani <rchincha@cisco.com>
13 lines
150 B
Go
13 lines
150 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"zotregistry.io/zot/pkg/cli"
|
|
)
|
|
|
|
func main() {
|
|
if err := cli.NewCliRootCmd().Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|