#!/usr/local/opt/python3/bin/python3.6

import sys
from src import run

# Entry point.
if __name__ == "__main__":
    run(sys.argv[1:])

