mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 00:38:06 +00:00
8 lines
129 B
Python
Executable file
8 lines
129 B
Python
Executable file
#!/usr/bin/env python3
|
|
"""hyperglass CLI management tool."""
|
|
|
|
# Local
|
|
from .cli import run
|
|
|
|
if __name__ == "__main__":
|
|
run()
|