#!/usr/bin/python

import os
import sys

# Support running from the source tree.
my_name = os.path.realpath(__file__)
if my_name.startswith(os.path.expanduser("~/")):
    modules = os.path.join(os.path.dirname(os.path.dirname(my_name)), "src")
    sys.path.insert(0, modules)

import ardj.cli


ardj.cli.run(list(sys.argv))
