chore: initialize screenjob project baseline

This commit is contained in:
Space-Banane
2026-05-27 17:31:49 +02:00
commit 84b0df520c
9 changed files with 1045 additions and 0 deletions

12
screenjob.py Normal file
View File

@@ -0,0 +1,12 @@
"""
Compatibility wrapper.
Preferred entry point:
python main.py "<job>"
"""
from src.cli import main
if __name__ == "__main__":
raise SystemExit(main())