Initial commit

This commit is contained in:
2025-04-09 09:34:15 +02:00
commit c19fb93ec5
47 changed files with 5174 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env python3
"""
Entry point for running the edison package as a module.
"""
from edison.cli import main
if __name__ == "__main__":
main()