Files
backend/src/app/main.py

7 lines
114 B
Python
Raw Normal View History

2026-03-06 10:04:00 +01:00
from fastapi import FastAPI
app = FastAPI()
app.get("/")
async def root():
return {"massege": "Hello world"}