created project

This commit is contained in:
2026-07-14 13:52:35 +03:00
parent 768d64ed28
commit f774ae084e
5 changed files with 39 additions and 0 deletions
View File
+9
View File
@@ -0,0 +1,9 @@
from fastapi import FastAPI
# Создаем само приложение
app = FastAPI()
# Вешаем обработчик на главную страницу
@app.get("/")
def read_root():
return {"message": "Hello, world!"}