mirror of
https://github.com/project-zot/zot.git
synced 2026-06-16 12:28:01 +08:00
bb9fbd2ef9
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
14 lines
149 B
Go
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)
|
|
}
|
|
}
|