This commit is contained in:
oliver
2026-08-28 10:11:11 -03:00
parent f533ff8e36
commit 585951c8ce
1380 changed files with 1540268 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
"""
Allow running the package as a module: python -m directory
"""
from .cli import main
if __name__ == "__main__":
main()