This commit is contained in:
Marek
2026-04-04 22:23:27 +02:00
parent 05fbcd5a04
commit 90b7ac42a9
4 changed files with 31 additions and 0 deletions

8
backend/main.py Normal file
View File

@@ -0,0 +1,8 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"status": "running"}