mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 16:48:05 +00:00
13 lines
306 B
Python
13 lines
306 B
Python
"""hyperglass cli module."""
|
|
import stackprinter
|
|
|
|
# Project Imports
|
|
from cli import commands
|
|
from cli import echo # noqa: F401
|
|
from cli import formatting # noqa: F401
|
|
from cli import static # noqa: F401
|
|
from cli import util # noqa: F401
|
|
|
|
stackprinter.set_excepthook(style="darkbg2")
|
|
|
|
CLI = commands.hg
|