mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 09:27:23 -05:00
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()
|