Files

10 lines
207 B
Python
Raw Permalink Normal View History

2026-03-14 19:41:36 +08:00
"""
PIT Router 启动入口
"""
from app import create_app, socketio_app as socketio
2026-03-14 19:41:36 +08:00
app = create_app('development')
if __name__ == '__main__':
socketio.run(app, host='0.0.0.0', port=9000, debug=True)