Files
2026-07-14 13:52:35 +03:00

10 lines
237 B
Python

from fastapi import FastAPI
# Создаем само приложение
app = FastAPI()
# Вешаем обработчик на главную страницу
@app.get("/")
def read_root():
return {"message": "Hello, world!"}