def run()

in custom_image_cli/cli/cli.py [0:0]


def run():
    args = argument_parser.parse_commandline_arguments()
    log = Log()
    print_message.print_pre_verification_text()

    if args.command is not None:
        commands = {"validate-image": ValidateImage()}

        commands[args.command].initiate(args, log)
        commands[args.command].run()