#!/usr/bin/env python3

import sys

from herold.command_line import handle_commandline


if __name__ == '__main__':
    exit_code = handle_commandline(
        argv=sys.argv,
        setup_logging=True,
    )

    sys.exit(exit_code)
