feat: added start.py, previous command functional

This commit is contained in:
Arduinum628
2025-08-04 23:05:02 +03:00
parent 3d7a7a64db
commit e5646407a2
5 changed files with 48 additions and 16 deletions

View File

@@ -0,0 +1,12 @@
import uvicorn
def start_app():
"""Функция запуска приложения"""
uvicorn.run(
'web_robot_control.main:app',
host='127.0.0.1',
port=8000,
reload=True
)