Update backend struct and dockerfile

This commit is contained in:
d3m0k1d
2025-11-21 22:43:21 +03:00
parent 6565f99893
commit b281553e42
4 changed files with 1 additions and 1 deletions

8
backend/app/main.py Normal file
View File

@@ -0,0 +1,8 @@
import fastapi
import uvicorn
app = fastapi.FastAPI()
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)