add main.py entrypoint for deploy

This commit is contained in:
2026-03-22 09:29:43 +09:00
parent 7f45211276
commit 49e033f373
3 changed files with 13 additions and 0 deletions

6
main.py Normal file
View File

@@ -0,0 +1,6 @@
"""Entry point for deployment — runs paper trading bot."""
import subprocess
import sys
if __name__ == "__main__":
sys.exit(subprocess.call([sys.executable, "paper_trade.py"] + sys.argv[1:]))