13 lines
175 B
Python
13 lines
175 B
Python
"""
|
|
Compatibility wrapper.
|
|
|
|
Preferred entry point:
|
|
python main.py run "<job>"
|
|
"""
|
|
|
|
from src.app_main import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|