56ed24a092
Fixes #1334
7 lines
166 B
Python
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()
|