Files
hive/core/framework/__main__.py
T

7 lines
166 B
Python

"""Allow running as ``python -m framework``, which powers the ``hive`` console entry point."""
from framework.cli import main
if __name__ == "__main__":
main()