Files
zot/cmd/zot/main.go
T
Tanmay Naik bb9fbd2ef9 cli: move client-only code out of the server flow
earlier, some of the client exclusive code was being run on zot server
instance too.

cli: fix the bug: spinner is not stopped with -o
2020-07-14 13:35:56 -04:00

14 lines
149 B
Go

package main
import (
"os"
"github.com/anuvu/zot/pkg/cli"
)
func main() {
if err := cli.NewRootCmd().Execute(); err != nil {
os.Exit(1)
}
}