From ed9d77649d44243e22c91066eb1e6fb2d7cf33d6 Mon Sep 17 00:00:00 2001 From: codEnjoyer Date: Wed, 11 Oct 2023 17:19:00 +0500 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D1=8F?= =?UTF-8?q?=D0=B5=D1=82=20=D0=BA=D0=BE=D1=80=D0=BD=D0=B5=D0=B2=D0=BE=D0=B9?= =?UTF-8?q?=20=D0=BF=D1=83=D1=82=D1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/main.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/backend/src/main.py b/backend/src/main.py index e69de29..4795646 100644 --- a/backend/src/main.py +++ b/backend/src/main.py @@ -0,0 +1,8 @@ +from fastapi import FastAPI + +app = FastAPI(title="Adaptify") + + +@app.get("/") +async def root() -> str: + return "Hello, world!"