standard fastapi

This commit is contained in:
2026-03-06 10:04:00 +01:00
parent ac91dfa34e
commit 5d563f8c9d
7 changed files with 10 additions and 1 deletions

7
src/app/main.py Normal file
View File

@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
app.get("/")
async def root():
return {"massege": "Hello world"}