Files
talks-site/backend/app/main.py
T

9 lines
114 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def read_root():
return {"hello": "world"}