11 lines
222 B
Python
Executable File
11 lines
222 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
自动化回测服务启动脚本
|
|
启动 FastAPI 服务,监听 8088 端口,接受回测任务提交
|
|
"""
|
|
|
|
from scripts.backtest_service.main import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|