mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 09:05:17 +00:00
a84c3e25f5
Otherwise the Flask wasn't created and tests were failing.
10 lines
126 B
Python
Executable File
10 lines
126 B
Python
Executable File
#!/usr/bin/env python
|
|
"""
|
|
CLI to manage redash.
|
|
"""
|
|
|
|
from redash.cli import manager
|
|
|
|
if __name__ == '__main__':
|
|
manager()
|