first commit

This commit is contained in:
Meor
2025-09-16 02:18:17 +03:00
commit fac5f36fc3
20 changed files with 650 additions and 0 deletions

5
run.py Normal file
View File

@@ -0,0 +1,5 @@
import uvicorn
from server.backend import endpoints # импортируем FastAPI экземпляр из файла app.py
if __name__ == "__main__":
uvicorn.run("server.backend.endpoints:api", host="127.0.0.1", port=8000, reload=True)