0
Fork 0
mirror of https://github.com/project-zot/zot.git synced 2024-12-16 21:56:37 -05:00
zot/cmd/zot/main.go
Ramkumar Chinchani 4896adad1b build: split functionality into separate binaries
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>
2022-01-11 11:48:18 -08:00

13 lines
153 B
Go

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