redash/manage.py
Arik Fraimovich a84c3e25f5 Move CLI logic into redash.cli and uses manager for tests.
Otherwise the Flask wasn't created and tests were failing.
2016-12-07 14:58:33 +02:00

10 lines
126 B
Python
Executable File

#!/usr/bin/env python
"""
CLI to manage redash.
"""
from redash.cli import manager
if __name__ == '__main__':
manager()