initial app

This commit is contained in:
2026-02-06 19:46:26 +04:00
commit a2c4560e36
4 changed files with 64 additions and 0 deletions

8
src/main.py Normal file
View File

@@ -0,0 +1,8 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"Hello": "World"}