#!/home/mike/src/carml/venv/bin/python

## putting this in __main__ allows you to "run" the module; it's a
## magic Python thing.
## e.g., like: python -m carml

import sys
from carml import dispatch

if __name__ == "__main__":
    retcode = dispatch(sys.argv)
    sys.exit(retcode)
