Week 2: Technical Assistant - Salah (Bootcamp)

This commit is contained in:
Mohamed Salah
2025-10-22 14:07:30 +03:00
parent 66dd4ea415
commit e84c1632ba
20 changed files with 570 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/env python3
import sys
import os
# Add src to Python path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
# Now import and run
from main import main
if __name__ == "__main__":
main()