Skip to content

refactor: Add module entrypoint for parsing rql strings

Move the old code within parser_main.py to __main__.py So that rql package can be run with the -m module flag.

When calling $ python3 -m rql "Any 1+1;", the main function defined inside main.py will be executed and the string "Any 1+1;" will be parsed.

Merge request reports