forked from mirrors/thatmattlove-hyperglass
8 lines
130 B
Python
Executable file
8 lines
130 B
Python
Executable file
#!/usr/bin/env python3
|
|
"""hyperglass CLI management tool."""
|
|
|
|
# Project
|
|
from cli import CLI
|
|
|
|
if __name__ == "__main__":
|
|
CLI()
|