func main()

in container_images/registry-image-forked/cmd/check/main.go [11:26]


func main() {
	color.NoColor = false

	command := commands.NewCheck(
		os.Stdin,
		os.Stderr,
		os.Stdout,
		os.Args,
	)

	err := command.Execute()
	if err != nil {
		logrus.Errorf("%s", err)
		os.Exit(1)
	}
}