Files
2026-08-28 10:11:11 -03:00

9 lines
129 B
Python

"""
Allow running the package as a module: python -m directory
"""
from .cli import main
if __name__ == "__main__":
main()